From b5996f0042351af5a99acf5f91f2123e6f2f8e9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1?= <мфв> Date: Thu, 4 Sep 2025 14:41:57 +0500 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B4=D0=B0=D0=BD=D0=B8=D0=B501=20?= =?UTF-8?q?=D0=93=D1=80=D0=B8=D1=88=D0=B8=D0=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- task01/src/HelloWorld.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 task01/src/HelloWorld.java diff --git a/task01/src/HelloWorld.java b/task01/src/HelloWorld.java new file mode 100644 index 0000000..2451945 --- /dev/null +++ b/task01/src/HelloWorld.java @@ -0,0 +1,5 @@ +public class HelloWorld { + public static void main(String[] args){ + System.out.println("Hello, World!"); + } +}