Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fb1753b82a4f0afb558e55e48cd6a6a98ddf0654 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
connect TCP:127.0.0.1:1534

# A comment
       # Another comment

# Spaces in a string
tcf Diagnostics echo "a ga ag ag a" 

# Empty string
tcf Diagnostics echo "" 

# Space betweem arguments
tcf Diagnostics echoERR null 

# Space inside a struct
tcf Diagnostics echoERR { }

# Space inside an array
tcf Diagnostics echoERR { } null { "Code" : 1, "Time" : 334, "Array" : [ 1, 2, 3 ] }

tcf Diagnostics getTestList

Back to the top