Samples
Samples
hello-world
Language: Gold, Platform: Echoes, Category: Go By Example
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Go By Example/hello-world
-
hello-world
-
References
- #
- Source Files
-
Other Files
-
References
hello-world.go
// Our first program will print the classic "hello world"
// message. Here's the full source code.
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
