RosettaCodeData/Task/Stack/SenseTalk/stack.sensetalk

10 lines
145 B
Plaintext

put () into stack
repeat with each item of 1 .. 10
push it into stack
end repeat
repeat while stack is not empty
pop stack
put it
end repeat