Skip to content

Commit 0173f90

Browse files
author
Anchor
committed
Change sentence structure for clarity
1 parent 43b28e5 commit 0173f90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/eBook/01.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Welcome to the world of Go, let's start exploring!
55
Go is a fast-compiled, garbage-collected, concurrent systems programming language. It has the following advantages:
66

77
- Compiles a large project within a few seconds.
8-
- Provides a software development model that is easy to reason about, avoiding most of the problems that caused by C-style header files.
8+
- Provides a software development model that is easy to reason about, avoiding most of the problems associated with C-style header files.
99
- Is a static language that does not have levels in its type system, so users do not need to spend much time dealing with relations between types. It is more like a lightweight object-oriented language.
1010
- Performs garbage collection. It provides basic support for concurrency and communication.
1111
- Designed for multi-core computers.
1212

13-
Go is a compiled language. It combines the development efficiency of interpreted or dynamic languages with the security of static languages. It is going to be the language of choice for the modern multi-core computers with networking. For these purposes, there are some problems that have to be resolved in language itself, such as a richly expressive lightweight type system, concurrency, and strictly regulated garbage collection. For quite some time, no packages or tools have come out that have solved all of these problems pragmatically; thus was born the motivation for the Go language.
13+
Go is a compiled language. It combines the development efficiency of interpreted or dynamic languages with the security of static languages. It is going to be the language of choice for modern, multi-core computers with networking. For these purposes, there are some problems that need to inherently be resolved at the level of the language of choice, such as a richly expressive lightweight type system, a native concurrency model, and strictly regulated garbage collection. For quite some time, no packages or tools have emerged that have aimed to solve all of these problems in a pragmatic fashion; thus was born the motivation for the Go language.
1414

1515
In this chapter, I will show you how to install and configure your own Go development environment.
1616

0 commit comments

Comments
 (0)