We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4f6e05 commit 44adc17Copy full SHA for 44adc17
3 files changed
section3/HelloWorld/.gitignore
@@ -2,6 +2,7 @@
2
out/
3
!**/src/main/**/out/
4
!**/src/test/**/out/
5
+.kotlin
6
7
### Eclipse ###
8
.apt_generated
section3/HelloWorld/src/HelloWorld.java
@@ -0,0 +1,8 @@
1
+public class HelloWorld {
+
+ public static void main(String[] args) {
+ System.out.println("Hello World");
+ IO.println("Hi World");
+ }
+}
section3/HelloWorld/src/Main.java
@@ -0,0 +1,4 @@
+void main() {
+ IO.println("Hello Madan");
+ System.out.print("Hi Java");
0 commit comments