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