QB64.org Forum

Active Forums => Programs => Topic started by: bplus on December 24, 2021, 07:54:55 pm

Title: There they go!
Post by: bplus on December 24, 2021, 07:54:55 pm
Code: QB64: [Select]
  1. _Title " There they go!"
  2. Screen _NewImage(1280, 640, 32)
  3. Dim sleigh$(1 To 5)
  4. For i = 1 To 5
  5.     Read sleigh$(i)
  6. x = 1: y = _Height - 7 * 16
  7.     Cls
  8.     For i = 1 To 5
  9.         _PrintString (x, y + i * 16), sleigh$(i)
  10.     Next
  11.     x = x + 1
  12.     y = y - .5
  13.     _Display
  14.     _Limit 100
  15. Loop Until x = _Width Or y = -16 * 6
  16.  
  17. sleigh: ' thanks tsh73 at JB   len 34
  18. Data "__     _  __                      "
  19. Data "| \__ `\O/  `--  {}    \}    {/   "
  20. Data "\    \_(~)/______/=____/=____/=*  "
  21. Data " \=======/    //\\  >\/> || \>    "
  22. Data "----`---`---  `` `` ```` `` ``    "
  23.  
  24.  
Title: Re: There they go!
Post by: DANILIN on December 25, 2021, 12:41:09 am
Running strings:

September 18, 2019
https://qb64forum.alephc.xyz/index.php?topic=1724.msg109578#msg109578

Running strings