From 9f98a13ff1028399d0a385dbc3877ddcb3137281 Mon Sep 17 00:00:00 2001 From: Deoksisss Date: Wed, 2 Sep 2026 09:00:50 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9A=D0=BE=D1=80=D0=BE=D0=B1=D0=B5=D0=B9?= =?UTF-8?q?=D0=BD=D0=B8=D0=BA=D0=BE=D0=B2=20=D0=94=D0=B5=D0=BD=D0=B8=D1=81?= =?UTF-8?q?=20=D0=9F=D1=80=D0=98-201.=20=D0=97=D0=B0=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=2001?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- task01/src/HelloWorld.java | 6 ++++++ 1 file changed, 6 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..efafe9b --- /dev/null +++ b/task01/src/HelloWorld.java @@ -0,0 +1,6 @@ +public class HelloWorld { + + public static void main(String... args) { + System.out.println("Hello, World!"); + } +}