Go: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
* http://tour.golang.org/welcome/1
* http://tour.golang.org/welcome/1
* Go for Java Programmers https://www.youtube.com/watch?v=_c_tQ6_3cCg
* Go for Java Programmers https://www.youtube.com/watch?v=_c_tQ6_3cCg
* https://astaxie.gitbooks.io/build-web-application-with-golang/content/en/index.html


=Overview=
=Overview=

Revision as of 02:50, 29 March 2016

External

Overview

Go is a general-purpose language designed for systems programming. It is strongly typed ... (for more details go to Go Concepts).

Subjects

Questions

  • The simplest possible program (var a:=1; a = a + 1) is 1065952 bytes long. Why? What does it contain?