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

5 lines
129 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
ListBuffer Class new: Stack
Stack method: push self add ;
Stack method: pop self removeLast ;
Stack method: top self last ;