1
0
Fork 0
mirror of https://github.com/Oreolek/Togataltu.git synced 2024-05-05 02:28:26 +03:00
Togataltu/stack.rb

16 lines
215 B
Ruby
Raw Normal View History

2011-04-22 14:32:32 +03:00
#!/usr/bin/env ruby
#encoding: utf-8
class Stack
def initialize
@stack = []
end
def push(item)
return @stack.push item
end
def pop
return @stack.pop
end
def count
@stack.length
end
end