Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1 @@
newstring = "This is creating and saving" " a new single string " "starting with three separate strings."

View file

@ -0,0 +1 @@
newarray = array(100)

View file

@ -0,0 +1 @@
newtable = table()

View file

@ -0,0 +1 @@
data("listnode(next,prev,datafield1,datafield2)")

View file

@ -0,0 +1 @@
newnode = listnode(,,"string data value1",17)

View file

@ -0,0 +1 @@
datafield1(newnode) = "updated data value 1"

View file

@ -0,0 +1 @@
newnode =

View file

@ -0,0 +1 @@
collect()