summaryrefslogtreecommitdiff
path: root/test.java
blob: 7183aedb59be495d4679c07fb655e83e6c912348 (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);
	}
}