RosettaCodeData/Task/Stack/M2000-Interpreter/stack-1.m2000

16 lines
282 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Module Checkit {
a=Stack
Stack a {
Push 100, 200, 300
}
Print StackItem(a, 1)=300
Stack a {
Print StackItem(1)=300
While not empty {
Read N
Print N
}
}
}
Checkit