https://github.com/toastdriven/goplayground
Experiments with Go.
https://github.com/toastdriven/goplayground
Last synced: 7 months ago
JSON representation
Experiments with Go.
- Host: GitHub
- URL: https://github.com/toastdriven/goplayground
- Owner: toastdriven
- License: bsd-3-clause
- Created: 2014-06-30T01:29:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-11-05T01:17:38.000Z (over 11 years ago)
- Last Synced: 2025-09-09T04:45:10.121Z (8 months ago)
- Language: Go
- Size: 149 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Go Playground
=============
My place to experiment with Go (without tons of little random repos).
Each experiment gets its own directory.
Experiments
-----------
* ``guessmynumber`` - I do this with almost every new programming language.
Just enough complexity to be interesting
(input/output/loops/conditionals/randomization) without taking more than
a page of code.
* ``ghetto_queue`` - A basic ``Queue`` implementation, because they're my
favorite data structure.
* ``carddeck`` - Implements a deck of playing cards. Intended for some
simulations in the future.
* ``fizzfuckingbuzz`` - Because I needed a simple kata to bite off & it was
a chance to play around with ``switch``.
* ``dictionary`` - Counts how many times **each word** is seen in a block of text
read from stdin. Experimenting with mappings & reading data.