Hello world/Graphical: Difference between revisions

Content added Content deleted
imported>Chinhouse
(Added Quackery.)
Line 3,496: Line 3,496:
GoodByeApp().run()
GoodByeApp().run()
</syntaxhighlight>
</syntaxhighlight>

=={{header|Quackery}}==

<syntaxhighlight lang="Quackery"> [ $ "turtleduck.qky" loadfile ] now!

[ $ /
import turtle
size = from_stack()
words = string_from_stack()
turtle.write(words,align="center",
font=("Arial", size, "normal"))
/ python ] is write

turtle 0 frames
255 times
[ clear
i^ 3 of colour
$ "Goodbye, World!"
i write
frame ]</syntaxhighlight>

{{out}}
[[File:Quackery Goodbye World.gif]]


=={{header|R}}==
=={{header|R}}==