tmpltohtml.go\
go_tutorial.html: go_tutorial.tmpl tmpltohtml
- makehtml go_tutorial.tmpl
+ ./makehtml go_tutorial.tmpl
effective_go.html: effective_go.tmpl tmpltohtml
- makehtml effective_go.tmpl
-
+ ./makehtml effective_go.tmpl
include ../src/Make.cmd
<p>
<pre>
$ gccgo helloworld.go
-$ a.out
+$ ./a.out
Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
$
</pre>
$ 6g file.go # compile file package
$ 6g helloworld3.go # compile main package
$ 6l -o helloworld3 helloworld3.6 # link - no need to mention "file"
-$ helloworld3
+$ ./helloworld3
hello, world
can't open file; err=No such file or directory
$
<p>
<pre>
$ gccgo helloworld.go
-$ a.out
+$ ./a.out
Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
$
</pre>
$ 6g file.go # compile file package
$ 6g helloworld3.go # compile main package
$ 6l -o helloworld3 helloworld3.6 # link - no need to mention "file"
-$ helloworld3
+$ ./helloworld3
hello, world
can't open file; err=No such file or directory
$