InterviewSolution
Saved Bookmarks
| 1. |
What is workspace? |
|
Answer» It is a DIRECTORY hierarchy with three directories – src, pkg and bin - at its root that CONTAIN the Go CODE. The "src" directory includes source files, the "pkg" directory CONTAINS objects, and the "bin" directory contains commands. Note: This information is usually asked in GOLANG interview questions. |
|