Skip to content

Instantly share code, notes, and snippets.

@mudream4869
Created April 22, 2021 04:10
Show Gist options
  • Save mudream4869/3d3d9ea9e3deafcefcc29f3f319db80f to your computer and use it in GitHub Desktop.
Save mudream4869/3d3d9ea9e3deafcefcc29f3f319db80f to your computer and use it in GitHub Desktop.
Fake quine with go embed
package main
import (
_ "embed"
)
//go:embed main.go
var s string
func main() {
print(s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment