diff --git a/Your first program/Comment.java b/Your first program/Comment.java new file mode 100644 index 0000000..4158e46 --- /dev/null +++ b/Your first program/Comment.java @@ -0,0 +1,9 @@ +public class Comment{ + public static void main(String[] args){ + System.out.println("Hello World"); // Single-line comment + /* + Multi-line + comment + */ + } +}