Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created June 18, 2012 18:37
Show Gist options
  • Save Poincare/2949916 to your computer and use it in GitHub Desktop.
Save Poincare/2949916 to your computer and use it in GitHub Desktop.
class Robot
def forward
puts "forward"
end
def backward
puts "backward"
end
def right
puts "right"
end
def left
puts "left"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment