11 lines
148 B
Ruby
11 lines
148 B
Ruby
require 'forwardable'
|
|
|
|
class Stack
|
|
extend Forwardable
|
|
|
|
def initialize
|
|
@stack = []
|
|
end
|
|
|
|
def_delegators :@stack, :push, :pop, :empty?
|
|
end
|