https://github.com/samyak2/guine
A quine (self-replicating program) in Go
https://github.com/samyak2/guine
go golang quine
Last synced: 8 months ago
JSON representation
A quine (self-replicating program) in Go
- Host: GitHub
- URL: https://github.com/samyak2/guine
- Owner: Samyak2
- License: mit
- Created: 2021-07-11T10:34:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-11T12:41:40.000Z (over 4 years ago)
- Last Synced: 2025-01-10T01:28:41.967Z (9 months ago)
- Topics: go, golang, quine
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# guine
A quine (self-replicating program) in Go. Inspired by [this article](http://www.madore.org/~david/computers/quine.html) and the first quine example there.
## TODOs
- [x] Do not assume ASCII
- [ ] Limit lines to 80 characters or so
- [x] Update: all lines are less than 100 characters now, but has more lines.
- [x] Make it shorter (<50 lines at least). Update: ~35 lines now! Update 2: 47 lines.
- [x] Make it more readable
- [ ] Document it too
- [x] Be `go fmt` compatible