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
s-parse (c -- ) takes a string from the user and stores it in the tmp buffer. It is working correctly in the sense that it does read and save the string.
However, it emits an error from $interpret, stating "token not recognized", and showing the string that has been read. This suggests that s-parse failed to consume the string, i.e. failed to update >in, causing the parser to re-examine the string as a token.
The text was updated successfully, but these errors were encountered:
s-parse (c -- )
takes a string from the user and stores it in thetmp
buffer. It is working correctly in the sense that it does read and save the string.However, it emits an error from
$interpret
, stating"token not recognized"
, and showing the string that has been read. This suggests thats-parse
failed to consume the string, i.e. failed to update>in
, causing the parser to re-examine the string as a token.The text was updated successfully, but these errors were encountered: