print statement should allow for escaping stuff
This commit is contained in:
parent
d0e3946aff
commit
77ce00970f
3 changed files with 35 additions and 4 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue