log.Println fails with quadruple quotes
melvincarvalho opened this issue · 1 comments
melvincarvalho commented
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.
melvincarvalho commented
Seems not to be an issue with log.Println, as this works:
package main
import "log"
func main() {
msg := `""""1""""`
log.Println(msg)
}