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