Tools, FAQ, Tutorials:
Build and Run "Hello" Go Program
How to Build and Run "Hello" Go Program on Ubuntu?
✍: FYIcenter.com
Hyperledger Fabric framework is written in Go language.
So it is important to learn how build and run Go programs on Ubuntu.
Here are the steps to build and run the "Hello" Go program.
1. Make sure that Go is installed.
$ go version go version go1.11.5 linux/amd64
2. Create a Go working directory
$ mkdir go $ export GOPATH=~/go
3. Create hello.go source code file. Remember to use Ctrl-D to end the input of the "cat" command.
$ cd go
$ mkdir src/hello
cat > src/hello/hello.go
package main
import "fmt"
func main() {
fmt.Printf("Hello world!\n")
}
^D
4. Compile and build the executable file.
$ export GOPATH=~/go $ go install hello
5. Run the executable file.
$ bin/hello Hello world!
⇒ Download Hyperledger Fabric Source Code
⇐ Verify Docker Engine on Ubuntu
2020-05-15, ∼1340🔥, 0💬
Popular Posts:
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
How to build a PHP script to dump Azure AD 2.0 Authentication Response? If you are use the Azure-AD-...
How to build a test service operation to dump everything from the "context.Request" object in the re...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...