about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-12-07 15:57:23 -0500
committerelioat <elioat@tilde.institute>2022-12-07 15:57:23 -0500
commit05f7c6eee09b468a9ddff63ab20a62bc962421c5 (patch)
tree4deae2aba35435735c6d7470c205b2ddbadb4e83 /src
parent75b62a7cd67c7108f6ef775a10440a82dc8c0b77 (diff)
downloaddecember-2022-05f7c6eee09b468a9ddff63ab20a62bc962421c5.tar.gz
Planes grow
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