Added missing flag check
This commit is contained in:
parent
19489d7a9a
commit
6de8ac7b9f
@ -40,7 +40,10 @@ func (f *Function) Compile() {
|
|||||||
case "let":
|
case "let":
|
||||||
name := line[1].Text()
|
name := line[1].Text()
|
||||||
value := line[3:]
|
value := line[3:]
|
||||||
fmt.Println("[variable]", name, value)
|
|
||||||
|
if config.Verbose {
|
||||||
|
fmt.Println("[variable]", name, value)
|
||||||
|
}
|
||||||
|
|
||||||
f.Variables[name] = &Variable{
|
f.Variables[name] = &Variable{
|
||||||
Value: line[3:],
|
Value: line[3:],
|
||||||
|
Loading…
Reference in New Issue
Block a user