What I would like to achieve:
./myHaskellProgram aLambdaFunc aFilePath
This aLambdaFunc
is a string that the user provides and will run on the aFilePath
.
I suppose I need Template Haskell
and parse the aLambdaFunc
string? Is there an easier way to do this?