/*------------------------------------------------------- * hello.go - first look *------------------------------------------------------- * Provides links to useful documentation * Jim Fawcett, CSE775 - Distributed Objects, Spring 2016 *-------------------------------------------------------- */ /* * https://golang.org/doc/install Install Go * https://golang.org/doc/ Go documentation * https://golang.org/pkg/ Pkg documentation * http://tour.golang.org/list Tour of go */ package main import "fmt" func main() { fmt.Printf("\n hello, CSE775 - Distributed Objects world\n") }