Skip to main content

Go - Programming Language

Go is an open source programming language which is
  • statically typed and compiled
  • designed at Google
  • similar syntax as C programming language
  • useful for building easy, reliable and efficient programs
  • build programs can be executed from command line interface
  • fast and robust for server-side code developments
  • used at Salesforce, Google, Hyperledger, Shopify, Docker, many more
Simple Program

 
Two methods to get the output for this simple program shown above:
  • Build separately and then execute as a command line script:
  • Compile and run with a single command ( used to run http server as well )



Comments