Go: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
=Subjects= | =Subjects= | ||
====[[go Concepts|Concepts]]==== | |||
====[[go Installation|Installation]]==== | |||
====[[go Operations|Operations]]==== | |||
====[[go Commands|Commands]]==== | |||
====[[IntelliJ Go Support]]==== | |||
=Questions= | |||
<font color=red> | |||
* The simplest possible program (<tt>var a:=1; a = a + 1</tt>) is 1065952. Why? What does it contain? | |||
</font> |
Revision as of 02:26, 22 March 2016
External
- https://golang.org
- http://www.infoq.com/presentations/go-iron-production
- http://tour.golang.org/welcome/1
- Language specification https://golang.org/ref/spec
- Go for Java Programmers https://www.youtube.com/watch?v=_c_tQ6_3cCg
Overview
Go is a general-purpose language designed for systems programming. It is strongly typed ... (for more details go to Go Concepts).
Subjects
Concepts
Installation
Operations
Commands
IntelliJ Go Support
Questions
- The simplest possible program (var a:=1; a = a + 1) is 1065952. Why? What does it contain?