Go: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(46 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
=External=
* https://golang.org
* https://go.dev
* Language specification https://golang.org/ref/spec
* https://go.dev/doc/effective_go
* http://www.infoq.com/presentations/go-iron-production
* https://go.dev/wiki
* http://tour.golang.org/welcome/1
* https://github.com/avelino/awesome-go
* Go for Java Programmers https://www.youtube.com/watch?v=_c_tQ6_3cCg
* Build Web Application with Golang https://astaxie.gitbooks.io/build-web-application-with-golang/content/en/index.html


=Overview=
=Internal=
 
* [[Programming Languages Concepts]]
Go is a general-purpose language designed for systems programming. It is strongly typed [[Go Concepts#Overview|... (for more details go to Go Concepts)]].
* [[Python]]
* [[Java]]


=Subjects=
=Subjects=
* [[Go Language]]
* [[Go Operations]]
* [[Go Engineering|Go Engineering]]
* [[Go Learning|Go Learning]]
* [[Go_Open_Source_Packages#Overview|Go Open Source Packages]]


* [[go Concepts|Concepts]]
=Code Examples=
* [[go Installation|Installation]]
{{Internal|Go Code Examples|Go Code Examples}}
* [[go Operations|Operations]]
* [[Go Concepts - Standard Library|Standard Library]]
* [[go Recipes|Recipes]]
* [[Go Sources|Sources]]
* [[IntelliJ Go Support]]
* [[Go Questions|Questions]]
 
=Questions=
<font color=red>
 
* The simplest possible program (<tt>var a:=1; a = a + 1</tt>) is 1065952 bytes long. Why? What does it contain?
* It is not immediately obvious what interface is implemented by a certain type. In order to make the correlation we need to scan the list of methods associated with the type and know those methods (or a subset of those methods) are in the method set of a certain interface.
* How to quickly (and idiomatically) assemble primitive in strings to be reported at stdout? In Java I used implicit conversion to String and + operator. When I find out write a [[Go Recipes|recipe]].
 
 
</font>

Latest revision as of 16:57, 4 September 2024