RosettaCodeData/Task/Menu/M2000-Interpreter/menu.m2000

10 lines
233 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Module TestMenu {
Print "Make your choice: ";
Do
Menu "fee fie", "huff and puff", "mirror mirror", "tick tock"
when menu=0
Print Menu$(Menu)
Print "That was the ";If$(Menu->"1st","2nd","3rd","4th");" option, bravo;"
}
TestMenu