Skip to content

Instantly share code, notes, and snippets.

@colinjfw
Created February 24, 2019 02:15
Show Gist options
  • Save colinjfw/c86cc19740be72f358d3f049c9473e16 to your computer and use it in GitHub Desktop.
Save colinjfw/c86cc19740be72f358d3f049c9473e16 to your computer and use it in GitHub Desktop.
function move(state) {
const head = state.you.body[0];
const moves = ['up', 'down', 'left', 'right'];
for (const move of moves) {
const coord = moveAsCoord(move, head);
// We now know where this is going to be!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment