Hello, Is it possible to display a record instead of its content ? Example: -record (person,{name,phone}). init()-> A=#person{name="john",phone="1234"}, io:format([A]), *** hangs *** %% but io:format("~s~n",[A1#person.phone]). *** display phone ***