'use strict' class Position constructor: (@x, @y) -> asString: => "#{@x},#{@y}" module.exports = Position