local p = {}

local abc

function p.get()
	return abc
end

function p.edit()
	abc = 'abc'
end

return p