You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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
|
|
] |