Mirror of CollapseOS
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  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.