This seems to work too, the code in @WhiteBoxDev 's post - this position prints even if the mouse has not moved yet:
function on_input(self, action_id, action)
if not action_id then -- action_id == nil, so this is a mouse movement event
print("Mouse x position = " .. action.x)
print("Mouse y position = " .. action.y)
end
end