I am having issues figuring out if this is possible. Any pointers would be awesome
I'm not sure on the exact syntax but something like
m = 3
d = putStr "d"
f = d ; m
Such that it would call function d, and return the value in m without being Maybe m?
EDIT:
What I am looking for is more like this?
eval s = s
m = 3
f = (eval s) ; m
evalto actually do? I mean, if you discard the return value, what's the point of running it at all? – shang Feb 10 '12 at 8:52