Fix the let command
Created by: nounoursheureux
The let
command now works like this:
-
let x=foo
creates a variable calledx
with a value offoo
-
let x
deletes the variablex
-
let
lists all the variables with their value
Created by: nounoursheureux
The let
command now works like this:
let x=foo
creates a variable called x
with a value of foo
let x
deletes the variable x
let
lists all the variables with their value