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
f(Nat) -> { A -> B }
f(zero) = { .. }
f(succ(n)) = { f; g; h; }
the ; after h is a syntax error. The BRAT parser, having failed to parse line 3 as an expression, will try and parse it as a new declaration and complain that = should be replaced with -> or -o.
This is a very confusing error message for a very easy mistake!!
The text was updated successfully, but these errors were encountered:
Given the following function
the
;
afterh
is a syntax error. The BRAT parser, having failed to parse line 3 as an expression, will try and parse it as a new declaration and complain that=
should be replaced with->
or-o
.This is a very confusing error message for a very easy mistake!!
The text was updated successfully, but these errors were encountered: