Skip to content

Commit 5de2d82

Browse files
author
Sanzhar
committed
init
0 parents  commit 5de2d82

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/h-u-m-a-n/main_test
2+
3+
go 1.16

main.go

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"github.com/h-u-m-a-n/lib_test"
6+
)
7+
8+
func main() {
9+
a, b := 1, 4
10+
c := sum.Sum(a,b)
11+
fmt.Println(c)
12+
}
13+

0 commit comments

Comments
 (0)