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

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

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