RosettaCodeData/Task/Stack/Rebol/stack-1.rebol

7 lines
134 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
stack: copy []
append stack 1 ;== [1]
append stack 2 ;== [1 2]
take/last stack ;== 2
take/last stack ;== 1
empty? stack ;== true