blob: 85929b266c23c4b4349dcf9f982e3e6df488e772 [file] [log] [blame]
/**
* Conditional Expressions
*/
class Example extends AnotherClass {
int Example(boolean Argument) {
return argument ? 100000 : 200000;
}
}