Updated ChromeOS (markdown)

Prajwal Koirala 2021-04-09 17:02:50 -04:00
parent a3c9a9187b
commit 9a184e91dd

@ -34,7 +34,7 @@ package main
import "fmt" import "fmt"
func main() { func main() {
fmt.Printf("Hello, Chrome OS!\n") fmt.Println("Hello, Chrome OS!")
} }
``` ```
Now, run `go install hello`. Then, run `${GOPATH}/bin/hello` (or just `hello` if you setup your GOPATH above) and you should see `Hello, Chrome OS!`. Now, run `go install hello`. Then, run `${GOPATH}/bin/hello` (or just `hello` if you setup your GOPATH above) and you should see `Hello, Chrome OS!`.