about summary refs log tree commit diff stats
path: root/src/tmp.lil
diff options
context:
space:
mode:
Diffstat (limited to 'src/tmp.lil')
-rw-r--r--src/tmp.lil10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/tmp.lil b/src/tmp.lil
index 50f8467..b7a26a3 100644
--- a/src/tmp.lil
+++ b/src/tmp.lil
@@ -35,10 +35,14 @@ l:insert name:"John" job:"Critic" age:32 into people
 
 show[l]
 
-save:writecsv[l "sis" ","] # where sis formats the column type, here string integer string -- the other option is boolean. 
+# save:writecsv[l "sis" ","] # where sis formats the column type, here string integer string -- the other option is boolean. 
 
-write["test.csv" save]
+# write["test.csv" save]
 
 on cons x y do
 	x,y
-end
\ No newline at end of file
+end
+
+breakfast: insert food:("Eggs","Pancakes","Grapefruit") quantity:(3,4,1) tasty:(1,1,0) into 0 # NOTE, 0 here could also be the name of the variable, so, in this example, breakfast
+
+show[breakfast]
\ No newline at end of file