Skip to content

adamryman/go-quine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

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 = `

About

Quine written in golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages