Hi. I'm Cyberarm.

I make games and other things with Ruby and Gosu. 🕹️

First Post

November 18 2014


> irb

require "blogging"

class Blog
  include Blogging

  def initialize
    words = Writer.new
    puts "word count: #{words.count}"
  end
end


Blog.new

> NoMethodError: undefined method 'count' for #<Writer:0x2b8a0f8>