Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 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''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])