bat/tests/syntax-tests/highlighted/Tcl/test.tcl
2020-11-23 15:43:58 +01:00

23 lines
1.5 KiB
Tcl
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}