RosettaCodeData/Task/Stack/Sidef/stack-1.sidef

5 lines
120 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
var stack = [];
stack.push(42); # pushing
say stack.pop; # popping
say stack.is_empty; # is_emtpy?