Skip to content

Instantly share code, notes, and snippets.

@johncalvinroberts
Last active September 25, 2022 17:22
Embed
What would you like to do?
An example of a quine in the go programming language
package main
import (
_ "embed"
)
//go:embed main.go
var code string
func main() {
println(code)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment