1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

add new syntax test files

This commit is contained in:
henil
2020-11-15 00:22:08 +05:30
committed by David Peter
parent a5a9ac83e5
commit 591eba66a3
18 changed files with 646 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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
}