초기 커밋.

This commit is contained in:
2025-03-05 10:21:10 +09:00
parent 3471914e64
commit 15885a2286
55 changed files with 1716 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using MySystem.MySubSystem;
internal class Program
{
private static void Main(string[] args)
{
Class1 cls = new MySystem.MySubSystem.Class1();
}
}
namespace MySystem.MySubSystem
{
public class Class1
{
public int Calculate(int a, int b)
{
int abs_Sum = System.Math.Abs(a) + Math.Abs(b);
return abs_Sum;
}
}
}