Skip to content

Instantly share code, notes, and snippets.

@cyrusclarke
cyrusclarke / human.rb
Created January 5, 2016 15:14
Firehose Quiz 3
class Superhuman
#a Superhuman has a name and a unique power
attr_accessor :name, :power
def initialize(name,power)
@name = name
@power = power
end