1
0

tex: update a word about Go

This commit is contained in:
leo 2023-05-23 19:34:56 +02:00
parent 3a3b2ad661
commit 31854ad789
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -542,15 +542,15 @@ First, a question of \textit{`Why pick Go for building a web
application?'} might arise, so the following few lines will try to address application?'} might arise, so the following few lines will try to address
that. that.
Go~\cite{golang} (or \emph{Golang} for SEO-friendliness) is a strongly typed, high-level Go~\cite{golang} (or \emph{Golang} for SEO-friendliness) is a strongly typed,
\emph{garbage collected} language where functions are first-class citizens and high-level \emph{garbage collected}, language where functions are first-class
errors are values. citizens and errors are values.
The appeal for the author comes from a number of language features, such as The appeal for the author comes from a number of features of the language, such
built-in support for concurrency, testing, sane \emph{zero} values, lack of as built-in support for concurrency and unit testing, sane \emph{zero} values,
pointer arithmetic, inheritance and implicit type conversions, easy-to-read lack of pointer arithmetic, inheritance and implicit type conversions,
syntax, producing a statically linked binary by default, etc., on top of that, easy-to-read syntax, producing a statically linked binary by default, etc., on
the language has got a cute mascot. top of that, the language has got a cute mascot.
Due to the foresight of the authors of the Go Authors regarding \emph{the Due to the foresight of the authors of the Go Authors regarding \emph{the
formatting question} (i.e.\ where to put the braces, tabs vs.\ spaces, etc.), formatting question} (i.e.\ where to put the braces, tabs vs.\ spaces, etc.),