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

https://github.com/f-fathurrahman/ffr-go-stuffs


https://github.com/f-fathurrahman/ffr-go-stuffs

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

Learning Go

Compile and link the program:

```
go build program_name.go
```

This will produce executable `program_name`

The compiler will complain and will not produce executable if there are any
unused variables.

Using `gofmt` to reformat the file:
```
gofmt -w filename.go
```