RosettaCodeData/Task/Stack/Deja-Vu/stack.djv

13 lines
258 B
Text
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
local :stack [] #lists used to be stacks in DV
push-to stack 1
push-to stack 2
push-to stack 3
!. pop-from stack #prints 3
!. pop-from stack #prints 2
!. pop-from stack #prints 1
if stack: #empty lists are falsy
error #this stack should be empty now!