An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# PlayGoBot
A simple Golang Bot Test

[![Go Report Card](https://goreportcard.com/badge/github.com/ZeuCxb/PlayGoBot)](https://goreportcard.com/report/github.com/ZeuCxb/PlayGoBot)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](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 Go

Program exited.
```