Created
October 3, 2017 21:27
-
-
Save prestonp/24aecfa4834a69d00f4cbd72af9d95d5 to your computer and use it in GitHub Desktop.
go quine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go run quine.go > quine2.go | |
diff quine.go quine2.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main;import "fmt";func main(){s:="package main;import \"fmt\";func main(){s:=%q;fmt.Printf(s,s)}";fmt.Printf(s,s)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment