classdef Atom < handle properties val end methods function atm = Atom(val) atm.val = val; end end end