https://github.com/takeruun/go-library-sample
サンプル 自作Go製ライブラリ
https://github.com/takeruun/go-library-sample
golang library
Last synced: about 2 months ago
JSON representation
サンプル 自作Go製ライブラリ
- Host: GitHub
- URL: https://github.com/takeruun/go-library-sample
- Owner: takeruun
- Created: 2022-10-20T13:59:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T14:27:42.000Z (over 3 years ago)
- Last Synced: 2025-03-24T10:33:45.075Z (over 1 year ago)
- Topics: golang, library
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# インストール方法
```
go get github.com/takeruun/go-library-sample
```
# 使い方
```go
package main
import (
sample "github.com/takeruun/go-library-sample"
)
func main() {
sample.Say()
sample.SayV1("message")
}
```
```
$ go run main.go
This is sample go libray
Message: message
```