fork download
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6. shit := "\u000";
  7. for i := 0; i < 1000; i++ {
  8. fmt.Println(shit)
  9. shit++
  10. }
  11. }
  12.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.go:6: non-hex character in escape sequence: "
prog.go:9: cannot convert 1 to type string
prog.go:9: invalid operation: shit += 1 (type string + int)
stdout
Standard output is empty