Advertisement
Ham62

PBASIC.bs2

Sep 19th, 2017
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. ' {$STAMP BS2}
  2. ' {$PBASIC 2.5}
  3.  
  4. DEBUG "Hello, this is a message from your Boe-Bot."
  5. DEBUG CR, "What's 7x11?"
  6. PAUSE 1000
  7. DEBUG CR, "The answer is: "
  8. DEBUG DEC 7 * 11
  9.  
  10. Counter VAR Word
  11.  
  12. FOR Counter = 1 TO 10
  13. DEBUG ? Counter
  14. PAUSE 500
  15. NEXT
  16.  
  17. DEBUG CR, "All done!"
  18.  
  19. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement