Last active
June 26, 2019 20:59
-
-
Save bouk/63357cca57ca8839cb6a43acaa1d17ef to your computer and use it in GitHub Desktop.
Quines
This file contains hidden or 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() { | |
p := "package main\n\nimport \"fmt\"\n\nfunc main() {\n\tp := %q\n\tfmt.Printf(p, p)\n}" | |
fmt.Printf(p, p) | |
} |
This file contains hidden or 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
d = DATA.read | |
puts d, "__END__", d | |
__END__ | |
d = DATA.read | |
puts d, "__END__", d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment