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,3 @@
x = 14
y = 0.4E3
z = 3-2i

View file

@ -0,0 +1 @@
t$ = "Name"

View file

@ -0,0 +1 @@
n$ = """This is a quoted text"""

View file

@ -0,0 +1,3 @@
n = 4
a$ = "6 feet"
PRINT n * a$

View file

@ -0,0 +1 @@
DIM name$(100)

View file

@ -0,0 +1,5 @@
DEF MyFunction(x)
MyF2 = x^2
MyF3 = x^3
MyFunction = MyF2 + MyF3
END DEF

View file

@ -0,0 +1,2 @@
x = MyFunction(3)
PRINT x; MyFunction.MyF2; MyFunction.MyF3

View file

@ -0,0 +1 @@
DEF num=123