I've successfully added scalaz to scala repl (2.9.1) and tried some basic examples with no problem, like :
List(10, 20, 30) <*> (List(1, 2, 3) map ((_: Int) * (_: Int)).curried)
or
List(10, 20, 30) |@| List(1, 2, 3) apply (_ * _)
However, the alias for map, namely °, as seen in this example http://scalaz.github.com/scalaz/scalaz-2.9.1-6.0.4/doc.sxr/scalaz/example/ExampleApplicative.scala.html#23569
is not recognized, I got a
error: value ° is not a member of List[Int]
Maybe I'm using the wrong character ? A copy-paste from the example above gobble the special characters...
Any guidance would be greatly appreciated ! :)