Text Only
|
Text with Attachments
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]
_Title
" There they go!"
Screen
_NewImage
(
1280
,
640
,
32
)
_ScreenMove
70
,
70
Dim
sleigh$
(
1
To
5
)
For
i
=
1
To
5
Read
sleigh$
(
i
)
Next
x
=
1
: y
=
_Height
-
7
*
16
Do
Cls
For
i
=
1
To
5
_PrintString
(
x
,
y
+
i
*
16
)
,
sleigh$
(
i
)
Next
x
=
x
+
1
y
=
y
-
.5
_Display
_Limit
100
Loop
Until
x
=
_Width
Or
y
=
-
16
*
6
sleigh:
' thanks tsh73 at JB len 34
Data
"__ _ __ "
Data
"| \__ `\O/ `-- {} \} {/ "
Data
"\ \_(~)/______/=____/=____/=* "
Data
" \=======/ //\\ >\/> || \> "
Data
"----`---`--- `` `` ```` `` `` "
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
Text Only
|
Text with Attachments