添加 App.java #1

Open
ryx wants to merge 1 commits from src into main
Showing only changes of commit 8dfacd9346 - Show all commits

13
App.java Normal file
View File

@ -0,0 +1,13 @@
package com.example;
public class App {
public static void main(String[] args) {
System.out.println("Hello CodeArts Build!");
System.out.println("构建时间: " + new java.util.Date());
}
// 一个简单的业务方法用于单元测试验证
public int add(int a, int b) {
return a + b;
}
}