Go Concepts - Lexical Structure: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 57: Line 57:
==Literal==
==Literal==


A ''literal'' is a notation for representing a fixed value in source code. Go provides literals for [[Go Booleans#Boolean_Literals|booleans]], [[Go Integers#Integer_Literals|integers]], [[Go Floating-Point Numbers#Floating_Point_Literals|floating-point values]], [[Go Strings#String_Literals|strings]], built-in types such as [[Go Arrays#Array_Literals|arrays]], [[Go Slices#Slice_Literals|slices]] and [[Go Maps#Map_Literals|maps]], user-defined types ([[Go Structs#Struct_Literals|structs]]), [[Go Concepts - Functions#Function_Literals|functions]], etc.
A ''literal'' is a notation for representing a fixed value in source code. Go provides literals for [[Go Booleans#Boolean_Literals|booleans]], [[Go Integers#Integer_Literals|integers]], [[Go Floating-Point Numbers#Floating-Point_Literals|floating-point values]], [[Go Strings#String_Literals|strings]], built-in types such as [[Go Arrays#Array_Literals|arrays]], [[Go Slices#Slice_Literals|slices]] and [[Go Maps#Map_Literals|maps]], user-defined types ([[Go Structs#Struct_Literals|structs]]), [[Go Concepts - Functions#Function_Literals|functions]], etc.


=Functions=
=Functions=

Revision as of 17:31, 22 March 2016

Internal

Source Files

Go code goes into source files. They have the .go extension.

Each source file is mandatory declared to belong to a package.

They can then optionally import code from other packages, using the import keyword.

Comments

// to the end of the line
/*
  Multiline
  line 1
  ...
  line n
*/

Whitespace

Whitespace in Go are carriage returns (u+000D), newlines (u+000A), spaces (u+0020) and tabs (u+0009).

Semicolons

TODO https://golang.org/ref/spec#Semicolons

Identifiers

Identifiers name program entities, such as constants, variables, types, functions, etc. An identifier is a sequence of one more letter and digits. The first character must be a letter. The letters are unicode letters or underscore "_".

The blank identifier "_".

Identifiers (not values) can be exported or unexported.

Lower-case letter identifiers

Upper-case letter identifiers

Operators

Expression

Operators combine operands into expressions.

Literal

A literal is a notation for representing a fixed value in source code. Go provides literals for booleans, integers, floating-point values, strings, built-in types such as arrays, slices and maps, user-defined types (structs), functions, etc.

Functions

Functions

Statements

Statements control execution flow within a function.

for

if

Keywords

range type func . .
package go . . .
defer chan import . .

Constants

Variables

Variables are always initialized to the type's zero value.


  var <var-name> <type> = <initial-value>

  var a string = "blah"


  <var-name> := <initial-value>

   a := "blah"

Variable Scopes

Package-level variable

Pass by Value vs Pass by Reference

In Go, all variables are passed by value. Even for pointer variables, since the value of the pointer is a memory address, passing pointer variables is still considered pass by value.

Pointers

Pointer variable.