Intermediate
Go (Golang)
Q89 / 100
What is the Go workspace mode (go.work)?
Correct! Well done.
Incorrect.
The correct answer is B) A multi-module workspace allowing local development across multiple modules without editing go.mod replace directives
B
Correct Answer
A multi-module workspace allowing local development across multiple modules without editing go.mod replace directives
Explanation
go.work (Go 1.18+) lists module paths: use ./module1 use ./module2. go build and go test in any module use local versions of listed modules.
Progress
89/100