From d2fc5a5f21e72d0296b52b1a449cf83c106fe611 Mon Sep 17 00:00:00 2001 From: IlyasValiulov <148232695+IlyasValiulov@users.noreply.github.com> Date: Thu, 22 Feb 2024 19:16:16 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 3 +++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .idea/доп.iml | 9 +++++++++ WarmlyShip/.gitignore | 29 +++++++++++++++++++++++++++++ WarmlyShip/.idea/.gitignore | 3 +++ WarmlyShip/.idea/misc.xml | 6 ++++++ WarmlyShip/.idea/modules.xml | 8 ++++++++ WarmlyShip/.idea/vcs.xml | 6 ++++++ WarmlyShip/WarmlyShip.iml | 11 +++++++++++ WarmlyShip/src/Main.java | 5 +++++ 12 files changed, 100 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/доп.iml create mode 100644 WarmlyShip/.gitignore create mode 100644 WarmlyShip/.idea/.gitignore create mode 100644 WarmlyShip/.idea/misc.xml create mode 100644 WarmlyShip/.idea/modules.xml create mode 100644 WarmlyShip/.idea/vcs.xml create mode 100644 WarmlyShip/WarmlyShip.iml create mode 100644 WarmlyShip/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/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..fccfb09 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ 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/.idea/доп.iml b/.idea/доп.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/доп.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/WarmlyShip/.gitignore b/WarmlyShip/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/WarmlyShip/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/WarmlyShip/.idea/.gitignore b/WarmlyShip/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/WarmlyShip/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/WarmlyShip/.idea/misc.xml b/WarmlyShip/.idea/misc.xml new file mode 100644 index 0000000..6f29fee --- /dev/null +++ b/WarmlyShip/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WarmlyShip/.idea/modules.xml b/WarmlyShip/.idea/modules.xml new file mode 100644 index 0000000..54c753c --- /dev/null +++ b/WarmlyShip/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/WarmlyShip/.idea/vcs.xml b/WarmlyShip/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/WarmlyShip/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WarmlyShip/WarmlyShip.iml b/WarmlyShip/WarmlyShip.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/WarmlyShip/WarmlyShip.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/WarmlyShip/src/Main.java b/WarmlyShip/src/Main.java new file mode 100644 index 0000000..3e59c38 --- /dev/null +++ b/WarmlyShip/src/Main.java @@ -0,0 +1,5 @@ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file