You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the validator seems very picky about spaces in my code. I'm extremely new to haskell and this could just be my own naivety. But for example,
let (_,(a:_)) = (10,"abc") in a
-- no spaces
validates and prompts the next lesson, whereas
let (_,(a:_)) = (10, "abc") in a
-- spaces
returns the correct value, but doesn't pass the test.
The text was updated successfully, but these errors were encountered:
I've noticed that the validator seems very picky about spaces in my code. I'm extremely new to haskell and this could just be my own naivety. But for example,
validates and prompts the next lesson, whereas
returns the correct value, but doesn't pass the test.
The text was updated successfully, but these errors were encountered: