Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: a03963808656d1f8032fd32df31c0f68114c7de3 (plain) (blame)
1
2
3
4
5
6
7
public class A {
    int Example(
        boolean Argument) {
        return argument ? 100000
                       : 200000;
    }
}

Back to the top