7 lines
67 B
Smalltalk
7 lines
67 B
Smalltalk
|
|
s := Stack new.
|
||
|
|
s push: 1.
|
||
|
|
s push: 2.
|
||
|
|
s push: 3.
|
||
|
|
s pop.
|
||
|
|
s top. "2"
|