summaryrefslogtreecommitdiff
path: root/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'test.java')
-rw-r--r--test.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/test.java b/test.java
new file mode 100644
index 0000000..7183aed
--- /dev/null
+++ b/test.java
@@ -0,0 +1,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);
+ }
+}