From 31854ad789cdbc2f2203e7ce7e728c6cb4ead497 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 23 May 2023 19:34:56 +0200 Subject: [PATCH] tex: update a word about Go --- tex/text.tex | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tex/text.tex b/tex/text.tex index 67f7ec1..4434060 100644 --- a/tex/text.tex +++ b/tex/text.tex @@ -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 that. -Go~\cite{golang} (or \emph{Golang} for SEO-friendliness) is a strongly typed, high-level -\emph{garbage collected} language where functions are first-class citizens and -errors are values. +Go~\cite{golang} (or \emph{Golang} for SEO-friendliness) is a strongly typed, +high-level \emph{garbage collected}, language where functions are first-class +citizens and errors are values. -The appeal for the author comes from a number of language features, such as -built-in support for concurrency, testing, sane \emph{zero} values, lack of -pointer arithmetic, inheritance and implicit type conversions, easy-to-read -syntax, producing a statically linked binary by default, etc., on top of that, -the language has got a cute mascot. +The appeal for the author comes from a number of features of the language, such +as built-in support for concurrency and unit testing, sane \emph{zero} values, +lack of pointer arithmetic, inheritance and implicit type conversions, +easy-to-read syntax, producing a statically linked binary by default, etc., on +top of that, the language has got a cute mascot. 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.),