|
|
|
|
|
by rkrzr
4082 days ago
|
|
I'm currently learning Scala (background in Python and Haskell) and I have encountered a few road blocks: 1. The REPL is not very helpful: You cannot look up documentation a la IPython (i.e. myFunc?) or inspect objects easily to find out how things work 2. There always seem to be 10 ways to do the same thing. This makes it much harder to understand other people's code than when there is just one way to do it. 3. The type system seems less helpful than Haskell's (e.g. why is "asdf" + 3 not a type error?) |
|