class Buffer def initialize @contents = [ "Welcome to jes.", "Press to exit (for now!)", "0123456789", ] end def size @contents.size end def [](index) @contents[index] end end