print statement should allow for escaping stuff

This commit is contained in:
Aidan 2020-07-17 22:38:15 -07:00
parent d0e3946aff
commit 77ce00970f
No known key found for this signature in database
GPG key ID: 327711E983899316
3 changed files with 35 additions and 4 deletions

View file

@ -18,6 +18,7 @@
package ast
import (
"fmt"
"strings"
)
@ -49,7 +50,7 @@ loop:
constructor.WriteString(iter.FmtToken())
}
println(constructor.String())
fmt.Printf(constructor.String() + "\n")
goto loop
}