Does Haskell have an equivalent of Alice\'s ability to bind a variable to a future?
val a = spawn foo;
where foo is some function.
I kn
You can use par from Control.Parallel as in
par
Control.Parallel
a `par` f a b c where a = foo
This is a hint to the runtime that a could be evaluated in another thread.
a