A simple calculator in Scala
Here1 (credits to Ben Lynn2) is a simple calculator in Haskell. I decided to try porting it over3 to Scala. The original example also makes this work in Javascript using Haste; I’ve left this out for…
4 posts
Here1 (credits to Ben Lynn2) is a simple calculator in Haskell. I decided to try porting it over3 to Scala. The original example also makes this work in Javascript using Haste; I’ve left this out for…
I came across this brief overview1 of generating ASCII representations of dungeons, and decided to take a stab at a Scala version of the same. The basic idea is (1) generate some random walls, and th…
Context As hinted at in the first post, I found Abhinav’s posts to be a great source material for learning and (over this weekend) recreation :-) I picked the second post, where the pruning process…
Context I found this excellent blog post by Abhinav Sarkar that lays out, step-by-step, writing a simple Sudoku solver in Haskell, and … it seemed a good idea to translate it, step-by-corresponding-s…