Files
plthy/examples/guessing_game.plthy
2024-02-21 14:01:22 +01:00

10 lines
310 B
Plaintext

hello|
set do random<1;128;> -> n|
set 0 -> guess|
until variable guess = variable n [
set do input<'guess: ';> -> guess|
do print<'too high';> if variable guess > variable n|
do print<'too low';> if variable guess < variable n|
do print<'correct!';> if variable guess = variable n|
]|
goodbye|