class TEST create make feature -- Initialization make do test_appended test_infix_plus end test_appended -- Output a welcome message. --| (Automatically generated.) local s, t, u: ES_STRING i: INTEGER d: DOUBLE do create s.make_from_string ("hello ") create t.make_from_string ("you bludger!") u := s.appended (t) u := u.appended (u) u := u.appended (i) u := u.appended (d) end; test_infix_plus -- Output a welcome message. --| (Automatically generated.) local s, t, u: ES_STRING i: INTEGER d: DOUBLE do create s.make_from_string ("hello ") create t.make_from_string ("you bludger!") u := s + t u := u + u u := u + i u := u + d end; end