File: Test.java

package info (click to toggle)
jtreg 5.1-b01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 5,432 kB
  • sloc: java: 29,218; xml: 729; sh: 665; makefile: 245
file content (15 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * @test
 */

public class Test {
    public static void main(String... args) {
        for (int i = 0; i < 40; i++) {
            if (i % 8 == 0) System.out.print(String.format("%3o: ", i));
            System.out.print((char) i);
            if (i % 8 == 7) System.out.println();
        }
        System.out.println("\u00E2");
        System.out.println("\\u0000\\u0001\\u0002");
    }
}