You are here |
journal.infinitenegativeutility.com | ||
| | | |
www.fosskers.ca
|
|
| | | | ||
| | | |
degoes.net
|
|
| | | | Functional programming has a bit of jargon, but that doesn't have to stop you from understanding core concepts | |
| | | |
blog.drewolson.org
|
|
| | | | So you've learned some basic Haskell and you're feeling really good about yourself. You sit down the write some code and you're presented with a deeply nested JSON structure: { "foo": "Hello", "bar": 1, "baz": "More stuff", "people": [ { "name": "Drew", "hobbies": [ { "name": "bridge" }, { "name": "haskell" } ] }, { "name": "Jane", "hobbies": [ { "name": "chess" }, { "name": "ocaml" } ] } ] } Your goal is to simply find the name of Drew's first hobby. LET'S WRITE SOME TYPES! | |
| | | |
boxbase.org
|
|
| | I came up with an idea when studying type theory. I am a vehement proponent of dynamic typing but there are several ideas that require me to explore into type theory so I am studying it. |