Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
384B

  1. ( handle backspace: go back one char in IN>, if possible, then
  2. emit BS + SPC + BS )
  3. : _bs
  4. ( already at IN( ? )
  5. IN> @ IN( = IF EXIT THEN
  6. IN> @ 1- IN> !
  7. BS SPC BS
  8. ;
  9. ( del is same as backspace )
  10. : BS? DUP 0x7f = SWAP 0x8 = OR ;
  11. SYSVARS 0x55 + :** KEY
  12. ( cont.: read one char into input buffer and returns whether we
  13. should continue, that is, whether CR was not met. )