jes-ruby/runtime/lib/buffer.rb

18 lines
230 B
Ruby

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