Quine by ksk

package main import"fmt";func main(){var s="package main import\"fmt\";func main(){var s=%q;fmt.Printf(s,s)}";fmt.Printf(s,s)}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page