about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ask.lil20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/ask.lil b/src/ask.lil
index caff538..644baed 100644
--- a/src/ask.lil
+++ b/src/ask.lil
@@ -25,4 +25,22 @@ show[d]
 
 a:select name where ("Alice" = name) from people
 
-show[a]
\ No newline at end of file
+show[a]
+
+w:update job:"Amazing Chef" where job = "Chef" from people
+
+show[w]
+
+l:insert name:"John" job:"Critic" age:32 into people
+
+show[l]
+
+# z:input["what is your fav fruit? "]
+# print["you input %s" z]
+
+# dirlist:dir["/Users/elimellen/Code/december-2022/src"]
+# show[dirlist]
+
+on cons x y do
+	x,y
+end
\ No newline at end of file