Go Concepts - Compiler: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Concepts")
 
No edit summary
 
Line 2: Line 2:


* [[Go Concepts#Subjects|Concepts]]
* [[Go Concepts#Subjects|Concepts]]
=Overview=
When building a Go program, the compiler only needs to look at the libraries that are directly included, rather than traversing the dependencies of all the libraries that are included in the entire dependency chain like Java, C and C++. <font color=red>Why?</font>

Latest revision as of 05:42, 2 April 2016

Internal

Overview

When building a Go program, the compiler only needs to look at the libraries that are directly included, rather than traversing the dependencies of all the libraries that are included in the entire dependency chain like Java, C and C++. Why?