Skip to content

Instantly share code, notes, and snippets.

*ghci> g
Game {, [Josh rack: HXDOTQI score: 0id: 0] :| [[Nick rack: KGAITTE score: 0id: 1]], ______________________________________________
|3W| | |2L| | | |3W| | | |2L| | |3W|
| |2W| | | |3L| | | |3L| | | |2W| |
| | |2W| | | |2L| |2L| | | |2W| | |
|2L| | |2W| | | |2L| | | |2W| | |2L|
| | | | |2W| | | | | |2W| | | | |
| |3L| | | |3L| | | |3L| | | |3L| |
| | |2L| | | |2L| |2L| | | |2L| | |
|3W| | |2L| | | | *| | | |2L| | |3W|
$ stack ghci
*ghci> import Data.Aeson
*ghci> let g = unsafeNewGame [human "josh"]
*ghci> let g = unsafeNewGame [human "josh", human "nick"]
*ghci> g
Game {, [[josh rack: DOERUTO score: 0id: 0],[nick rack: ELIALIH score: 0id: 1]], ______________________________________________
|3W| | |2L| | | |3W| | | |2L| | |3W|
| |2W| | | |3L| | | |3L| | | |2W| |
| | |2W| | | |2L| |2L| | | |2W| | |
|2L| | |2W| | | |2L| | | |2W| | |2L|
import scala.language.higherKinds
import scalaz.{Applicative, Traverse}
import scalaz.\/
import scalaz.std.list._
import scalaz.std.option._
import scalaz.syntax.either._
import scalaz.syntax.traverse._
object Mappy {
//libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.2.0"
import scala.language.higherKinds
import scalaz.{MonadState, MonadListen, MonadReader, MonadError, \/}
import scalaz.std.list._
// All I want to do in this code is invoke the eval function. That's it.
// This code compiles, so it's close, just needs the finishing touch.
object HowDoICallEval {
@joshcough
joshcough / springer-free-maths-books.md
Created December 28, 2015 19:16 — forked from bishboria/springer-free-maths-books.md
Springer have made a bunch of maths books available for free, here are the direct links

Let's say I want to look something up in an environment (like Map String Int or something, doesn't really matter). I start with Reader for the Env, and I use the ask function.

type Env = Map String Int

envLookup :: String -> Reader Env Int
envLookup key = (Maybe.fromMaybe (error "unbound var") . Map.lookup key) <$> ask
type R[A] = Reader[Env, A]
type Z[F[_], A] = WriterT[F, Output, A]
type W[A] = Z[R, A]
def evalLocal(x: String, i: Int, exp: Exp): W[Int] = {
WriterT[R,Output,Int](
Reader[Env, (Output, Int)] { (env: Env) =>
eval(exp).run.run(env + (x -> i))
}
)
scala> import scalaz.syntax._, validation._, either._, monadPlus._
import scalaz.syntax._
import validation._
import either._
import monadPlus._
scala> import scalaz.std.list._
import scalaz.std.list._
scala> List(1.left, 2.left, "bad".right, "really bad".right).separate
object LetLangError {
import scala.language.higherKinds
import scalaz.MonadError
import scalaz.syntax.monad._
import scalaz.syntax.monadError._
trait Exp
case class Num(i:Int) extends Exp
case class Add (l:Exp, r:Exp) extends Exp