Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12 linhas
307B

  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.