RosettaCodeData/Task/Queue-Definition/M2000-Interpreter/queue-definition.m2000
2023-07-01 13:44:08 -04:00

13 lines
214 B
Text

Module Checkit {
a=Stack
Stack a {
Data 100,200, 300
}
Stack a {
While not empty {
Read N
Print N
}
}
}
Checkit