I am running the pre-built Idirs 64-bit binary for my Windows 8 notebook. I was able to get the hello world example running.
I tried to compile the 2048 example by Kester Tong (
https://github.com/KesterTong/idris2048/blob/master/README.md), and received this error:
Effects.idr:48:35:When elaborating type of Main.rndFin':
When elaborating argument ce to type constructor Effects.Eff:
Can't unify
Vect (S n) a
with
m -> List EFFECT
Specifically:
Can't unify
Vect (S n)
with
\{uv0} => m -> uv
I am new to functional programming, and Idris. Any tips would be appreciated. Are there any caveats about using the Windows pre-built binary? Thank you.
Robert