An open API service indexing awesome lists of open source software.

https://github.com/broothie/goquine

A quine, in Go
https://github.com/broothie/goquine

go quine

Last synced: 8 months ago
JSON representation

A quine, in Go

Awesome Lists containing this project

README

          

# A quine, in Go

Well, here it is:

```go
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)
}

```