From ddfb9615270fd33126ad73dc427cbc5e42f0a7b8 Mon Sep 17 00:00:00 2001 From: Dmitriy Bulygin <47479409+DemetriusStorm@users.noreply.github.com> Date: Thu, 27 Jan 2022 15:02:48 +0300 Subject: [PATCH] Update chapter-03-types.md Deleted the extra space. --- _book/chapter-03-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_book/chapter-03-types.md b/_book/chapter-03-types.md index 88b9164..f5986b2 100644 --- a/_book/chapter-03-types.md +++ b/_book/chapter-03-types.md @@ -106,7 +106,7 @@ Go — это язык программирования со статическ import "fmt" func main() { - fmt.Println("1 + 1 = ", 1 + 1) + fmt.Println("1 + 1 =", 1 + 1) } Если вы запустите программу, то должны увидеть это: