Implement local variable assignment

This commit is contained in:
Elnu 2023-05-30 14:49:06 -07:00
parent 149842c121
commit 01173d2f7d
4 changed files with 32 additions and 4 deletions

View file

@ -2,11 +2,12 @@
if True:
let x = "3"
"Bob will be here in [x] seconds."
let x = "2"
x = "2"
"Bob will be here in [x] seconds."
if True:
let x = "213"
let x = "1"
x = "1"
let x = "4"
"[x]"
"Bob will be here in [x] seconds."
"Bob will be here in [x] seconds."
"Bob" "I will not say anything, [foo]"