Expression Statements in DIAL
An expression in DIAL is a Boolean statement—that is, it is evaluated as either true or false. The expression statement is also used for calling functions whose value is unimportant, such as functions that output information or save files. An expression statement has the following form:
expression;
Examples:
console.writeln("Hello World");
marker.save(mymarker, "Marker Boston");
diveline.set_project("my_project");