Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
print_to_output = function(...)
	local args = pack(...)
	local line = table.concat(map_nil(args, tostring), ' ')
	table.insert(Output_editor_state.lines,
		{data=line})
end