|
|
|
|
|
by cdsmith
4328 days ago
|
|
That's exactly what it is. It's all Haskell, just with tuples as arguments. If you want normal Haskell back, just do this: {-# LANGUAGE NoImplicitPrelude #-}
import HaskellPrelude
import CodeWorld -- for pictures, colors, etc.
The stuff from CodeWorld is still uncurried, but the rest of the language is still there. |
|