summaryrefslogtreecommitdiff
path: root/test/test.java
blob: 418c3181949d88a8d8a0c2f3659c60a5583498ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Test {
	public static void main(String[] args) {
		/* hello!
		everyone
		this
		is
		a test*/
		String x = "hello, world!\"";
		System.out.println(x +
			"yes\n\\"+
			x);
	}
}