Skip to content

Instantly share code, notes, and snippets.

View arightious's full-sized avatar

Aron arightious

  • Thousand Oaks, CA
View GitHub Profile
@arightious
arightious / card.rb
Created October 14, 2015 22:20
Firehose Card Challenge
class Card
attr_accessor :rank, :suit
def initialize(rank, suit)
self.rank = rank
self.suit = suit
end
def output_card
puts "#{self.rank} of #{self.suit}"