Skip to content

Commit 6079794

Browse files
committed
feat: example Go application
1 parent c6c92ea commit 6079794

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

main.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
fmt.Println("Example")
7+
}

main_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"testing"
6+
)
7+
8+
func TestName(t *testing.T) {
9+
fmt.Println("Test Example")
10+
}

0 commit comments

Comments
 (0)