https://github.com/devlights/gotmp
個人用のGo言語メモプログラム置き場
https://github.com/devlights/gotmp
examples go goland golang
Last synced: 3 months ago
JSON representation
個人用のGo言語メモプログラム置き場
- Host: GitHub
- URL: https://github.com/devlights/gotmp
- Owner: devlights
- License: mit
- Created: 2019-07-03T02:29:04.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-08-14T09:17:53.000Z (over 1 year ago)
- Last Synced: 2025-02-12T08:58:21.819Z (12 months ago)
- Topics: examples, go, goland, golang
- Size: 53.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gotmp
個人用のGo言語メモプログラム置き場
[](https://gitpod.io/#https://github.com/devlights/gotmp)
```sh
$ task init
task: [init] go mod init app
go: creating new go.mod: module app
task: [init] go get -u github.com/devlights/gomy@latest
go: added github.com/devlights/gomy v0.6.0
task: [init] echo -e "package main\nfunc main(){\n}" > main.go
task: [fmt] goimports -w .
task: [build] go mod tidy
task: [build] go build -o app main.go
$ task run
task: Task "build" is up to date
task: [run] ./app
$ task clean
task: [OS:clean] go clean
task: [OS:clean] rm go.* *.go
task: [OS:clean] rm -rf ./.task
```