16 lines
166 B
Plaintext
16 lines
166 B
Plaintext
|
start:
|
||
|
?input "What do you want to oopify?"
|
||
|
$input + "oop!"
|
||
|
$"Do you want to oopify something else? (y/n)"
|
||
|
;
|
||
|
|
||
|
on y
|
||
|
goto start
|
||
|
end
|
||
|
|
||
|
on n
|
||
|
goto end
|
||
|
end
|
||
|
|
||
|
end:
|
||
|
$"Goodbye!"
|