summaryrefslogtreecommitdiff
path: root/test.java
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-07-21 23:46:56 -0400
committerpommicket <pommicket@gmail.com>2022-07-21 23:46:56 -0400
commit47a65f608f485af32d2df12be489146ad67839e1 (patch)
tree998051aba1da5da4a75e51bfee9a9a5d5b00b517 /test.java
parent08da42c48bf40f24faa91c00b777ae15ac8f706b (diff)
minor fixes, syntax highlighting for java & js
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);
+ }
+}