Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
300B

  1. ( handle backspace: go back one char in IN>, if possible, then
  2. emit SPC + BS )
  3. : (inbs)
  4. ( already at IN( ? )
  5. IN> @ IN( = IF EXIT THEN
  6. IN> @ 1- IN> !
  7. SPC BS
  8. ;
  9. ( cont.: read one char into input buffer and returns whether we
  10. should continue, that is, whether CR was not met. )