From cf358fcb0cd69653069cae68476b3021c32d1a78 Mon Sep 17 00:00:00 2001 From: Alexey Dyuryagin Date: Wed, 3 Sep 2025 19:42:30 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D1=8E=D1=80=D1=8F=D0=B3=D0=B8=D0=BD=20?= =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=9F=D1=80=D0=98?= =?UTF-8?q?-202.=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD=D0=B8=D0=B5=2001?= 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..70fd330 --- /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!"); + } +}