Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
312B

  1. EXECUTION MODEL
  2. After having read a line through readln, we want to interpret
  3. it. As a general rule, we go like this:
  4. 1. read single word from line
  5. 2. Can we find the word in dict?
  6. 3. If yes, execute that word, goto 1
  7. 4. Is it a number?
  8. 5. If yes, push that number to PS, goto 1
  9. 6. Error: undefined word.