- Finish escodegen compiler;
- Implement fs-task, exec-task and other stdlib wrappers for task;
- Make sure paralleljs works fine in ion;
- Add decent examples of error handling using Result;
- Fix multiple pipes issue (
a | b | c
generatespipe(a, pipe(b, c))
) - Figure out how to consume classes from JS. It's hard withou
new
. Maybe we can make it like Ruby:Klass.new
; - Add some examples of something class-like using closures;
- A natural wait to do flip:
>(__, 100)
->(100)>
but how to disambiguate? Haskell'sfn
100 is quite ugly and unintuitive. - JSX? Or stick to JSON like in act or templates like in choo? Allowing React can have its perks... Will require a XML parser :/
- pairs are very useful, why not having them?
but what is the point, if there's no pattern matching?
coordinates = (5, 6) //or |5, 6|?
- Use sanctuary instead of just Ramda? Specifically for the
@
op?