Explain workspace in GO?

devquora
devquora

Posted On: Feb 22, 2018

 

A code has to be kept inside a workspace GO. A workspace is defined as a directory hierarchy with three directories.
  • pkg contains package objects.
  • the bin contains executable files
  • src contains GO source file arranged systematically into packages.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Golang Programming Interview Questions

    What is GO?

    It is an open source programming language makes the programmers build a simple, reliable and efficient software easily...

    Golang Programming Interview Questions

    What are the structures of syntax in GO?

    In GO programming language the syntaxes are specified using EBNF (Extended Backus-Naur Form) Production = production na..

    Golang Programming Interview Questions

    Can you perform testing in GO? Explain how can do it?

    Yes, it has a testing framework which comprises of the go test command and the testing package. In order to write a tes..