September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 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