diff --git a/general/RunComment.java b/general/RunComment.java new file mode 100644 index 00000000..3f32dda7 --- /dev/null +++ b/general/RunComment.java @@ -0,0 +1,6 @@ +class RunComment{ + public static void main(String[] args){ + // This is comment below but gets executed. + // \u000d System.out.println("This is comment."); // The reason for this is that the Java compiler parses the unicode character "\\u000d" as a new line + } +} \ No newline at end of file