Skip to content

Instantly share code, notes, and snippets.

@selfup
Last active April 22, 2016 00:25
Show Gist options
  • Save selfup/8d8b91c1ab6db8657830d76e6218ccc4 to your computer and use it in GitHub Desktop.
Save selfup/8d8b91c1ab6db8657830d76e6218ccc4 to your computer and use it in GitHub Desktop.
@count = 0
def step_right
@count += 1
if @count < 11
puts "I STEPPED RIGHT"
else
return "I AM DONE"
end
step_right
end
step_right
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment