RosettaCodeData/Task/Stack/Oforth/stack-1.fth
2023-07-01 13:44:08 -04:00

4 lines
129 B
Forth

ListBuffer Class new: Stack
Stack method: push self add ;
Stack method: pop self removeLast ;
Stack method: top self last ;