jesus = Christ.new

What it seems like:

class Christ < God

  attr_accessor :is_awake

  def sleep
    @is_awake = false
  end

  def awaken
    @is_awake = true
  end

end
christ.sleep
christ.awaken # <== exec began 0 AD
party

At some level we're the dev that ran this line:

$ ruby separation.rb

and i think about that sometimes... - alexbrady


Older Post Newer Post


Leave a comment