Advertisement
Guest User

HAPPY BIRTHDAY

a guest
Mar 23rd, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. DECLARE SUB delay (duration!)
  2. ls = 50
  3. SCREEN 8
  4. FOR o = 0 TO 1000
  5. FOR i = 1 TO 15
  6. PRINT
  7. PRINT " HAPPY BIRTHDAY! "
  8. LINE (2, 0)-(130,25), i, B, ls
  9. COLOR i
  10. delay .3
  11. cls
  12. ls = ls + 5
  13. NEXT i
  14. NEXT o
  15. END
  16. SUB delay (duration AS SINGLE)
  17. tim = TIMER
  18. DO
  19.    LOOP UNTIL (TIMER - tim + 86400) - (INT((TIMER - tim + 86400) / 86400) * 86400) > duration
  20. END SUB
  21. Rem Happy birthday!!!!!
  22. Rem © 1999-2017 AbdoSoft Corporation. All rights reserved.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement