From 9a34fd5dfbc9fd10c462a71c6793e3fc9aef029e Mon Sep 17 00:00:00 2001 From: B4D_US3R Date: Tue, 20 May 2025 10:03:14 +0500 Subject: [PATCH] first commit --- go.mod | 3 +++ lib.go | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 go.mod create mode 100644 lib.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..80a2713 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.catgirls.asia/B4D_US3R/workspace_lib + +go 1.23.1 diff --git a/lib.go b/lib.go new file mode 100644 index 0000000..b655332 --- /dev/null +++ b/lib.go @@ -0,0 +1,5 @@ +package workspace_lib + +func AddNums(a, b int) int { + return a + b +}