summaryrefslogtreecommitdiffstats
path: root/kturtle/data/randomname.logo
blob: db6b9e1ed6f33f905be90a8b296b68a940133987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# prints your name at random

reset
canvassize 255,255
hide

name = inputwindow "What's your name?"

repeat 50 [
  x = random 0, 255 
  y = random 0, 255
  s = random 10, 51

  go x, y
  fontsize s
  pencolor x,y,s*5
  print name
]