An Introduction to Programming in Go [PDF]

0
An Introduction to Programming in Go
An Introduction to Programming in Go

Getting Started

Computer programming is the art, craft, and science of
writing programs which define how computers operate.
This book will teach you how to write computer programs
using a programming language designed by Google named Go.

Go is a general-purpose programming language with advanced features and a clean syntax. Because of its wide availability on a variety of platforms, its robust well-documented common library, and its focus on good software engineering principles, Go is an ideal language to learn as your first programming language.

The process we use to write software using Go (and most programming languages) is fairly straightforward:

  1. Gather requirements
  2. Find a solution
  3. Write source code to implement the solution
  4. Compile the source code into an executable
  5. Run and test the program to make sure it works

This process is iterative (meaning its done many times) and the steps usually overlap. But before we write our first program in Go there are a few prerequisite concepts we need to understand.


You can also get this PDF by using our Android Mobile App directly:

 

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.