Open Strepto opened 3 years ago
Subtraction is the only operator creating error messages when there is no whitespace in the example below.
maths : Int -> Int maths a = let b = a+a c = a-a -- This line will not compile d = a//a e = a*a f = a^a in 1
Will give this error message, confusing me for a few moments.
Consider if this should be handled with a specific error message?
Subtraction is the only operator creating error messages when there is no whitespace in the example below.
Will give this error message, confusing me for a few moments.
Consider if this should be handled with a specific error message?