crlf.input 247 B

12345678910111213
  1. /*
  2. Source containing CR/LF line endings.
  3. The gofmt'ed output must only have LF
  4. line endings.
  5. Test case for issue 3961.
  6. */
  7. package main
  8. func main() {
  9. // line comment
  10. println("hello, world!") // another line comment
  11. println()
  12. }