8000 GitHub - broothie/goquine: A quine, in Go
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

broothie/goquine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A quine, in Go

Well, here it is:

package main

import "fmt"

const p = `package main

import "fmt"

const p = %c%s%c

func main() {
	fmt.Printf(p, 96, p, 96)
}
`

func main() {
	fmt.Printf(p, 96, p, 96)
}

About

A quine, in Go

Topics

Resources

Stars

Watchers

Forks

Languages

0