August 2019
Beginner to intermediate
798 pages
17h 2m
English
There is another way to execute your Go code that does not create any permanent executable files – it just generates some intermediate files that are automatically deleted afterward.
So, in order to run aSourceFile.go without creating an executable file, you will need to execute the following command:
$ go run aSourceFile.go This is a sample Go program!
As you can see, the output of the preceding command is exactly the same as before.
Read now
Unlock full access