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

5 lines
120 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var stack = [];
stack.push(42); # pushing
say stack.pop; # popping
say stack.is_empty; # is_emtpy?