RosettaCodeData/Task/Stack/Oforth/stack-1.fth

5 lines
129 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
ListBuffer Class new: Stack
Stack method: push self add ;
Stack method: pop self removeLast ;
Stack method: top self last ;