Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I am getting this error when I try to attempt a solution:
Postfix/Tests.hs:23:28: No instance for (Integral t0) arising from a use of 'begin' The type variable 't0' is ambiguous Relevant bindings include x :: t0 (bound at Postfix/Tests.hs:23:19) Note: there are several potential instances: instance Integral GHC.Int.Int16 -- Defined in 'GHC.Int' instance Integral GHC.Int.Int32 -- Defined in 'GHC.Int' instance Integral GHC.Int.Int64 -- Defined in 'GHC.Int' ...plus 9 others In the first argument of '(==)', namely 'begin push x push y push z end' In the expression: begin push x push y push z end == (z :: Int) In the second argument of '($)', namely '\ x y z -> begin push x push y push z end == (z :: Int)'
It's quite similar to the one that Mr.eod ran into. I am not sure where the bug is located and I could reproduce that in my PC. Since I used the typeclass method, I have to give each parameter the type "(Integral i) => i" to make sure it can catch every valid stmt (Otherwise, ghc refuses to run instruction like
begin push 1 end
because ghc cannot ensure whether1
has the type of Int or not).Does the error log means I cannot use
Integral
? What should I do?