Skip to content

Commit bbacbc6

Browse files
start up new go lang project following https://youtu.be/pwZuNmAzaH8?si=v8THCZMYbbHMDbRa
1 parent b1b3740 commit bbacbc6

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

Go/GoBank/Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
build:
2+
@go build -o bin/gobank
3+
4+
run:
5+
build
6+
@./bin/gobank
7+
8+
test:
9+
@go test -v ./..
10+

Go/GoBank/api.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package main

Go/GoBank/go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/Programmer-RD-AI/learning
2+
3+
go 1.25.3

Go/GoBank/main.go

Lines changed: 7 additions & 0 deletions
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("hello world")
7+
}

bin/cloud-provider-kind

58 MB
Binary file not shown.

0 commit comments

Comments
 (0)