presbrey/goraptor

log.Println fails with quadruple quotes

melvincarvalho opened this issue · 1 comments

Error:

goraptor.go:696: syntax error at '"'

https://github.com/presbrey/goraptor/blob/master/goraptor.go#L696

Trying to add the following triple
<> <> """"1"""" .

Commenting out log.Println(text) fixes it, but I've not yet worked out the root problem, will look into it.

Seems not to be an issue with log.Println, as this works:

package main
import "log"
func main() {
    msg := `""""1""""`
    log.Println(msg)
}