https://github.com/f-fathurrahman/ffr-go-stuffs
https://github.com/f-fathurrahman/ffr-go-stuffs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/f-fathurrahman/ffr-go-stuffs
- Owner: f-fathurrahman
- Created: 2017-07-13T15:35:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-15T23:31:39.000Z (almost 2 years ago)
- Last Synced: 2025-01-13T11:49:06.617Z (5 months ago)
- Language: Go
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```