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

https://github.com/toastdriven/goplayground

Experiments with Go.
https://github.com/toastdriven/goplayground

Last synced: 7 months ago
JSON representation

Experiments with Go.

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.