From d00a10a6a9906bfebb63fc9b3ba8f866bb32eed0 Mon Sep 17 00:00:00 2001 From: xuxin <840198532@qq.com> Date: Sun, 19 Apr 2026 13:35:27 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- day01/src/com/inmind/HelloWorld.java | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 day01/src/com/inmind/HelloWorld.java diff --git a/.gitignore b/.gitignore index f1cba18..01ed9e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # 忽略任意目录层级下的 .iml 文件(核心规则) -#**/*.iml +**/*.iml # 保留 IDEA 其他核心忽略项(完整配置如下) # --------------------------- IntelliJ IDEA 相关 --------------------------- diff --git a/day01/src/com/inmind/HelloWorld.java b/day01/src/com/inmind/HelloWorld.java new file mode 100644 index 0000000..e583630 --- /dev/null +++ b/day01/src/com/inmind/HelloWorld.java @@ -0,0 +1,10 @@ +package com.inmind; + +public class HelloWorld { + public static void main(String[] args) { + System.out.println("你好,java!"); + System.out.println("你好,java!"); + System.out.println("你好,java!"); + System.out.println("你好,java!"); + } +}