diff options
author | pommicket <pommicket@gmail.com> | 2022-07-21 23:46:56 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-07-21 23:46:56 -0400 |
commit | 47a65f608f485af32d2df12be489146ad67839e1 (patch) | |
tree | 998051aba1da5da4a75e51bfee9a9a5d5b00b517 /test.java | |
parent | 08da42c48bf40f24faa91c00b777ae15ac8f706b (diff) |
minor fixes, syntax highlighting for java & js
Diffstat (limited to 'test.java')
-rw-r--r-- | test.java | 13 |
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); + } +} |