commit c0d5d714a9ec683fb4e636eefd5f7c5d364f09c3 Author: B4D_US3R Date: Tue May 20 11:27:33 2025 +0500 first commit diff --git a/add.go b/add.go new file mode 100644 index 0000000..b4816f3 --- /dev/null +++ b/add.go @@ -0,0 +1,5 @@ +package testmod + +func Add(a, b int) int { + return a + b +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..cd20187 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.catgirls.asia/B4D_US3R/testmod + +go 1.23.1