- Security with Go
- John Daniel Leon
- 42字
- 2021-06-30 19:06:43
Building a single Go file
If you build a file, it will generate an executable named after the Go file. Run the following command:
go build example.go
This will give you an executable named example that could be executed like this:
./example