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
let a = fn(k, x1, x2, x3, x4, x5) {
var m = k
m = m - 1
}
gives this error:
ursa: Error: Line 1, col 9:
> 1 | let a = fn(k, x1, x2, x3, x4, x5) {
^
2 | var m = k
Expected "(", a block, a list, an identifier, an object, a map, a number, a literal string, a string, a boolean, "null", "-", "+", "~", "not", "launch", "yield", "await", "for", "loop", or "if"
This is unfortunate, as the real problem is that the line m = m - 1 should be m := m - 1.
The text was updated successfully, but these errors were encountered:
The following code:
gives this error:
This is unfortunate, as the real problem is that the line
m = m - 1
should bem := m - 1
.The text was updated successfully, but these errors were encountered: