work on adding indexing and slices

This commit is contained in:
2023-03-10 00:19:03 +00:00
parent cd1027630c
commit fe05d818de
12 changed files with 616 additions and 134 deletions

11
test.ar
View File

@@ -1,4 +1,7 @@
x = 10
term.log(x)
x = x+1
term.log(x)
let t = thread(f()=time.snooze(1))
term.log("start")
t.start()
term.log('started')
let val = t.join()
term.log('joined', val)