From 0bed7a9058d2ace68b124206b1576d7e3fddb712 Mon Sep 17 00:00:00 2001 From: "pyzhov.egor" <142977368+nxf1ve@users.noreply.github.com> Date: Mon, 5 Feb 2024 20:25:58 +0400 Subject: [PATCH] Initial commit --- .idea/.gitignore | 3 + .idea/ProjectCatamaran_Hard.iml | 11 +++ .idea/misc.xml | 6 ++ .idea/modules.xml | 9 ++ .idea/uiDesigner.xml | 124 ++++++++++++++++++++++++++ .idea/vcs.xml | 6 ++ ProjectCatamaran/ProjectCatamaran.iml | 11 +++ ProjectCatamaran/src/Main.java | 9 ++ 8 files changed, 179 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/ProjectCatamaran_Hard.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 ProjectCatamaran/ProjectCatamaran.iml create mode 100644 ProjectCatamaran/src/Main.java diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/ProjectCatamaran_Hard.iml b/.idea/ProjectCatamaran_Hard.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/.idea/ProjectCatamaran_Hard.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /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..0a61430 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ProjectCatamaran/ProjectCatamaran.iml b/ProjectCatamaran/ProjectCatamaran.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/ProjectCatamaran/ProjectCatamaran.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectCatamaran/src/Main.java b/ProjectCatamaran/src/Main.java new file mode 100644 index 0000000..71d53dd --- /dev/null +++ b/ProjectCatamaran/src/Main.java @@ -0,0 +1,9 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.println("Hello and welcome!"); + } +} \ No newline at end of file