Skip to main content
summaryrefslogtreecommitdiffstats
blob: a12db92ecd85db9ad0f7a75778def32cfa522696 (plain) (blame)
1
2
3
4
5
6
7
8
/**
 * Conditional Expressions
 */
class Example extends AnotherClass {
    int Example(boolean Argument) {
        return argument ? 100000 : 200000;
    }
}

Back to the top