Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 372 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 372 Bytes

go-quine

I wrote a quine in go! It is 129 bytes long.

Try it out!

go get github.com/adamryman/go-quine
cd $GOPATH/src/github.com/adamryman/go-quine
go run main.go

Here is the formatted code:

package main

func main() {
	b := string(96)
	print(p, b, p, b)
}

const p = `package main

func main() {
	b := string(96)
	print(p, b, p, b)
}

const p = `