Some remarks on metaDepth's eol syntax. --------------------------------------- -- Boolean values: true false -- Primitive types: boolean/int/double/String (in metadepth) vs Boolean/Integer/Real/String (in eol) -- Cardinalities: [*] [1] [0..1] [2..10] -- Printing: .print(); // print object .println(); // print object and newline -- Some operations: + : String // string concatenation .allInstances() : Set // get all instances of a given type .id() : String // get identifier name ..isDefined() : Boolean // check if an optional parameter is set -- for-loop, while-loop and if/else for (iter in set) { } while (condition) { if (condition) { } else { } .get("").setSet(false); // set an optional parameter to Null delete ; // REMARK: also remove all links to the (statement above) new ; Note that doing operation on types does not work well. This also includes instances. So don't do operations straight on element variables, e.g.,: stateA. A particular example is: stateA = stateA // will return false -- EOL manual: http://www.eclipse.org/epsilon/doc/book