Skip to content

Instantly share code, notes, and snippets.

View arvindang's full-sized avatar

Arvin Dang arvindang

View GitHub Profile
@eng
eng / craps.rb
Created November 16, 2015 15:26
Craps!
@roll = []
@pass_line_wins = 0
@pass_line_losses = 0
def roll_finished
puts @roll.inspect
puts "Pass line wins #{@pass_line_wins}, pass line losses #{@pass_line_losses}"
@roll = []
end