Skip to content

Instantly share code, notes, and snippets.

View mtnzorro's full-sized avatar

Jason Campbell mtnzorro

View GitHub Profile
@mtnzorro
mtnzorro / gist:08fdd6d741fccda47990
Created September 22, 2014 00:51
CrossFit Game (Race against the rabbit assignment)
<script>
function CrossFitter(name, strength, metcon, focus) {
this.name = name;
// Values : 0-9
this.strength = strength;
this.metcon = metcon;
this.focus = focus;
this.position = 0;