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
- Host: GitHub
- URL: https://github.com/broothie/goquine
- Owner: broothie
- Created: 2022-07-22T00:54:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T00:59:22.000Z (over 3 years ago)
- Last Synced: 2024-12-29T00:10:56.457Z (10 months ago)
- Topics: go, quine
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A quine, in Go
Well, here it is:
```go
package mainimport "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)
}```