2014-05-15 :-(
_ 午後
1300 HDMIがどうのこうの
_ たまに秀丸の IME から Google IME が消える
なに?
_ フルスタックエンジニア
# coding: utf-8
class Stack
def initialize(size)
@size = size
@stack ||= []
end
def add(n)
if @stack.length >= @size
puts "stack full"
return
end
@stack << n
print
end
def print()
p @stack
end
end
def main(argv)
stack = Stack.new(3)
0.upto(10) {|n|
stack.add(n)
}
end
main(ARGV)
% ruby stack0.rb [0] [0, 1] [0, 1, 2] stack full stack full stack full stack full stack full stack full stack full stack full
[ツッコミを入れる]




