blob: 99b254ef956538245dac33933a1ebd0bce4fcc8f [file] [log] [blame]
import org::eclipse::xtend::middleend::xpand::test;
extension org::eclipse::xtend::middleend::xpand::test::imported reexport;
test (Object s): test2 (s);
test2 (Object s): "Hallo, " + s + ": " + 3*(4+5) + " - " + other (99);
testColl (Collection c): c.typeSelect (String).collect (e|"a " + e + " b");
testPerson (Person p): "" + p + " - " + p.firstName + " " + p.name + " - " + p.retrieveTheFullName() + " - " + p.firstName;
toString (Person p): "[" + p.firstName + " " + p.name + "]";