1 2 3 4 5 6 7 8 9 10 11 12
local lastStepDistance = 0 function nextStep() lastStepDistance = getDistanceInMeters() print("nextStep @", lastStepDistance) end function initialize() print("initialize") -- doNotCallMe() nextStep() end