github.com/xushiwei/go@v0.0.0-20130601165731-2b9d83f45bc9/src/cmd/gofmt/testdata/crlf.input (about)

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