Quiz: Distributing Tool
Test your knowledge about distributing your tool.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What does the following code do?
if runtime.GOOS == "darwin" {
<block>
}
A.
Builds the code only on MacOS machines
B.
Executes <block>
only if the program is running on MacOS
C.
Executes <block>
if the program was built on MacOS
D.
Executes <block>
if user-defined variable GOOS = “darwin”
1 / 5
...