From 864f82c68ca02541a711c07cc4206cd668dbf7f9 Mon Sep 17 00:00:00 2001 From: Ava Ruan Date: Tue, 7 Jun 2022 16:27:06 +0800 Subject: [PATCH] Update day09.md --- zh_tw/Days/day09.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zh_tw/Days/day09.md b/zh_tw/Days/day09.md index 4027e2f..f7952ac 100644 --- a/zh_tw/Days/day09.md +++ b/zh_tw/Days/day09.md @@ -61,10 +61,10 @@ Go 程式語言鼓勵您將代碼統整在套件中,以便於重新使用和 ### TLDR -- **Line 1** = This file will be in the package called `main` and this needs to be called `main` because includes the entry point of the program. -- **Line 3** = For us to use the `Println()` we have to import the fmt package to use this on line 6. -- **Line 5** = The actual starting point, its the `main` function. -- **Line 6** = This will let us print "Hello #90DaysOfDevOps" on our system. +- **第 1 行** = 該文件將位於名為 main的套件中,並且需要將其稱為 main,因為其中包含程式的切入口。 +- **第 3 行** = 為了讓我們使用 `Println()`,我們必須在第 6 行導入 fmt 套件包才能使用它。 +- **第 5 行** = 實際的起點為'main'函數。 +- **第 6 行** = 這將讓我們在系統上呈現“Hello #90DaysOfDevOps”。 ## Resources