moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kturtle / data / randomname.logo
blobdb6b9e1ed6f33f905be90a8b296b68a940133987
1 # prints your name at random
3 reset
4 canvassize 255,255
5 hide
7 name = inputwindow "What's your name?"
9 repeat 50 [
10   x = random 0, 255 
11   y = random 0, 255
12   s = random 10, 51
14   go x, y
15   fontsize s
16   pencolor x,y,s*5
17   print name