- Security with Go
- John Daniel Leon
- 76字
- 2021-06-30 19:06:41
Setting up Go
At this point, your environment should have Go installed and you should be able to run go executable from your Terminal window. The go program is how you access the Go toolchain. You can test it by running this command:
go help
Now we are ready to write a first Hello World program to ensure that our environment is fully functional. Before we start coding, though, we need to create a proper workspace.