Initial commit

This commit is contained in:
Oleksii Aleshchenko
2023-02-09 15:57:52 +02:00
commit f4fbabe6e5
6 changed files with 49 additions and 0 deletions

14
src/Main.java Normal file
View File

@@ -0,0 +1,14 @@
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
// System.out.println(1);
}
void myFunction() {
}
int myFunction2() {
return 1;
}
}