RosettaCodeData/Task/Stack/SenseTalk/stack.sensetalk
2023-07-01 13:44:08 -04:00

9 lines
145 B
Text

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