mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
commit
7fd4359c27
@ -105,7 +105,7 @@ set greeting $greeting[
|
|||||||
incr i
|
incr i
|
||||||
incr i
|
incr i
|
||||||
]
|
]
|
||||||
puts $greeting ;# The output is "Salutations3"
|
puts $greeting ;# The output is "Salutations3"
|
||||||
|
|
||||||
# Every word in a command is a string, including the name of the routine, so
|
# Every word in a command is a string, including the name of the routine, so
|
||||||
# substitutions can be used on it as well. Given this variable
|
# substitutions can be used on it as well. Given this variable
|
||||||
@ -422,8 +422,7 @@ eval {set name Neo}
|
|||||||
eval [list set greeting "Hello, $name"]
|
eval [list set greeting "Hello, $name"]
|
||||||
|
|
||||||
|
|
||||||
# Therefore, when using "eval", , use "list" to build
|
# Therefore, when using "eval", use "list" to build up the desired command:
|
||||||
# up the desired command:
|
|
||||||
set command {set name}
|
set command {set name}
|
||||||
lappend command {Archibald Sorbisol}
|
lappend command {Archibald Sorbisol}
|
||||||
eval $command
|
eval $command
|
||||||
|
Loading…
Reference in New Issue
Block a user