1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-01-19 12:24:17 +00:00

23 lines
1.5 KiB
Tcl
Raw Normal View History

2020-11-15 00:22:08 +05:30
set part1 hello
set part2 how; set part3 are
set part4 you
set part2;
set greeting $part1$part2$part3$part4
set somevar {
 This is a literal $ sign, and this \} escaped
 brace remains uninterpreted
}
set name Neo
set greeting "Hello, $name"
variable name NotNeo
namespace eval people {
 set name NeoAgain
}