https://github.com/zeucxb/playgobot
A simple Golang Bot Test
https://github.com/zeucxb/playgobot
Last synced: about 1 month ago
JSON representation
A simple Golang Bot Test
- Host: GitHub
- URL: https://github.com/zeucxb/playgobot
- Owner: zeucxb
- License: mit
- Created: 2016-08-29T20:09:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-01T14:56:58.000Z (almost 9 years ago)
- Last Synced: 2025-05-07T14:09:25.221Z (about 1 month ago)
- Language: Go
- Size: 5.86 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PlayGoBot
A simple Golang Bot Test[](https://goreportcard.com/report/github.com/ZeuCxb/PlayGoBot)
[](https://github.com/ZeuCxb/PlayGoBot/blob/master/LICENSE)# Usage
```bash
$ go run main.go
Show me the code :)
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello Go")
}
:end
========== PROGRAM ==========
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello Go")
}========== RESPONSE ==========
Hello GoProgram exited.
```