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,2 @@
a = " that's a string "
b = ' a "string" is this '

View file

@ -0,0 +1 @@
a = " that's a string

View file

@ -0,0 +1,3 @@
a = ' that<nowiki>''</nowiki>s a string
print,a
;==> that's a string

View file

@ -0,0 +1,4 @@
b = 'hello'
a = b+' world
print,a
;==> hello world

View file

@ -0,0 +1,6 @@
print,'777'x
;==> 1911
print,'777'o
;==> 511
print,'777'
;==> 777

View file

@ -0,0 +1,4 @@
print,"777
;==> 511
print,"877
;==> 877

View file

@ -0,0 +1,2 @@
a = "0"
;==> Syntax error.

View file

@ -0,0 +1 @@
crlf = string([13b,10b])