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

https://github.com/go-training/helloworld

Hello World for Golang
https://github.com/go-training/helloworld

golang helloworld

Last synced: about 1 year ago
JSON representation

Hello World for Golang

Awesome Lists containing this project

README

          

# helloworld

[![Build Status](https://cloud.drone.io/api/badges/go-training/helloworld/status.svg)](https://cloud.drone.io/go-training/helloworld)

Hello World for Golang

## Simple Command

Run golang program

```bash
go run main.go
```

Testing

```bash
go test
```

Build binary

```bash
go build
```

Install binary

```bash
go install
```