commit f4fbabe6e5abbbaa88091dd0dca541628667e597 Author: Oleksii Aleshchenko Date: Thu Feb 9 15:57:52 2023 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21b4487 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Project exclude paths +/out/ \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d15472f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f1a8c3c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/OOP_IO-2x_2023.iml b/OOP_IO-2x_2023.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/OOP_IO-2x_2023.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..c2a31e9 --- /dev/null +++ b/src/Main.java @@ -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; + } +}