第一次提交

This commit is contained in:
2026-04-19 13:35:27 +08:00
parent 89678ec0d6
commit d00a10a6a9
2 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,5 +1,5 @@
# 忽略任意目录层级下的 .iml 文件(核心规则)
#**/*.iml
**/*.iml
# 保留 IDEA 其他核心忽略项(完整配置如下)
# --------------------------- IntelliJ IDEA 相关 ---------------------------

View File

@@ -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!");
}
}