Initial Commit

This commit is contained in:
2025-06-28 09:41:16 +02:00
parent 6a13d6bc51
commit fdb5600083
2 changed files with 343 additions and 0 deletions

16
program.sbl Normal file
View File

@ -0,0 +1,16 @@
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!"