summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/texpower/dummy.java
blob: 9c66e4e5424140ed73adf20050764a8eff0e2605 (plain)
1
2
3
4
5
6
7
    public int dummy(int n) {
        if (n<1) {
            return 0;
        } else {
            return 1;
        }
    }