Skip to content

carymrobbins/helga-haskell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

helga-haskell

Evaluate Haskell expressions using helga!

Installation

pip install helga-haskell

Usage

<crobbins>  :t liftM
<helga>     liftM :: Monad m => (a1 -> r) -> m a1 -> m r
<crobbins>  > [x*2 | x <- [1,2,3]]
<helga>     [2,4,6]
<crobbins>  > foobar
<helga>     ERROR: Not in scope: `foobar'