From 93e4bf06af80e927975d99ca52307e036cd95db7 Mon Sep 17 00:00:00 2001 From: xuxin <840198532@qq.com> Date: Tue, 13 Jan 2026 14:26:06 +0800 Subject: [PATCH] init --- day01/day01.iml | 11 +++++++++++ day01/src/com/inmind/HelloWorld.java | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 day01/day01.iml create mode 100644 day01/src/com/inmind/HelloWorld.java diff --git a/day01/day01.iml b/day01/day01.iml new file mode 100644 index 0000000..6db0c46 --- /dev/null +++ b/day01/day01.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/day01/src/com/inmind/HelloWorld.java b/day01/src/com/inmind/HelloWorld.java new file mode 100644 index 0000000..f35fdd9 --- /dev/null +++ b/day01/src/com/inmind/HelloWorld.java @@ -0,0 +1,7 @@ +package com.inmind; + +public class HelloWorld { + public static void main(String[] args) { + System.out.println("大家好,童鞋们"); + } +} \ No newline at end of file