Working let statements

This commit is contained in:
Elnu 2023-05-30 11:23:14 -07:00
parent 333dde95f7
commit b882ef44c0
4 changed files with 42 additions and 38 deletions

View file

@ -1,9 +1,13 @@
# Control testing
$ x = "3"
"Bob will be here in [x] seconds."
$ x = "2"
"Bob will be here in [x] seconds."
$ x = "1"
if True:
let x = "3"
"Bob will be here in [x] seconds."
let x = "2"
"Bob will be here in [x] seconds."
if True:
let x = "213"
let x = "1"
"Bob will be here in [x] seconds."
"Bob will be here in [x] seconds."
"Bob" "I will not say anything, [foo]"
define foo = "bar"