Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
'CREATE DYNAMIC ARRAY SPACES USING STRINGS
|
||||
|
||||
string sa=nuls 5* sizeof float
|
||||
string sb=sa
|
||||
|
||||
'MAP ARRAY VARIABLES ONTO STRINGS
|
||||
|
||||
float a at *sa
|
||||
float b at *sb
|
||||
|
||||
'ASSIGN SOME VALUES
|
||||
|
||||
a<=10,20,30,40,50
|
||||
b<=60,70,80,90,00
|
||||
|
||||
'ADD ARRAY B TO A BY STRING CONCATENATION
|
||||
|
||||
sa+=sb
|
||||
|
||||
'TEST
|
||||
|
||||
print a[7] 'result 70
|
||||
Loading…
Add table
Add a link
Reference in a new issue