You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/Tcl/test.tcl

23 lines
1.5 KiB
Tcl

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

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
}