Education
Learn Haskell
« Education « DownloadsAttribute | Value |
---|---|
Version | 0.0.6 |
Updated | January 1, 1970 |
Installs | 106 times |
Category | Education |
Description
Simple, 1 line Haskell interpreter based on tryhaskell.org’s free API (many-many thanks to that).
Main features:
– evaluate one line Haskell expressions and display the results; ie. first ten Fibonacci: take 10 $ map fst $ iterate (\(x,y)->(y, x+y)) (1,1)
– the valid expressions are stored to auto-complete history (can be cleared or saved to sdcard)
– you can share your result (along with expression and type) from menu or tap on result/type/expr)
– you can upload your own file into the service for later evaluation (if it parsed successfully you can use it in the 1 line expression)
Please note, that computations (and thus results) are limited to 750ms.
Recent changes:
0.0.6:
– bug fix: orientation change accidentally destroyed the history cause FC
– the auto-complete history can be saved to sdcard
0.0.5:
– progress bar and cancel-able evaluation
– display the result’s length (in bytes)
– bug fix: didn’t share on result expression and type signature touch
0.0.4:
– menu to share your result
– menu to clear the auto-complete history
– menu to code upload (loading your own file into the service for later evaluation)
– about 🙂