This commit is contained in:
Ingy döt Net 2013-04-10 21:29:02 -07:00
parent 764da6cbbb
commit db842d013d
19005 changed files with 197040 additions and 7 deletions

View file

@ -0,0 +1,4 @@
CHARACTER c1='A', c2="B", c3=&C&
CHARACTER str1='single quotes', str2="double quotes", str3*100
str3 = % delimit "Nested 'strings' " if needed %

View file

@ -0,0 +1 @@
str3 = 'a string' // CHAR(0) // "may contain" // $CRLF // ~ any character ~

View file

@ -0,0 +1,4 @@
$TAB == CHAR(9) ! evaluates to 1 (true)
$LF == CHAR(10)
$CR == CHAR(13)
$CRLF == CHAR(13) // CHAR(10) ! concatenation