Skip to content

Instantly share code, notes, and snippets.

View floribon's full-sized avatar

Florian Ribon floribon

  • Google
  • Mountain View, CA
View GitHub Profile
@floribon
floribon / robot.js
Created December 5, 2012 13:03
Test
function Robot() {}
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(1);
robot.turn(1);
robot.fire();
};
Robot.prototype.onWallCollision = function(ev) {