From ccfefe99dc53e80ede462f120a4c9c1cae7d916e Mon Sep 17 00:00:00 2001 From: joezou Date: Sun, 25 Oct 2015 22:22:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=A0=E8=AF=A5=E6=96=B9=E6=B3=95=E4=B8=BA?= =?UTF-8?q?=E5=86=85=E9=83=A8=E8=B0=83=E7=94=A8=E5=BB=BA=E8=AE=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E7=A7=81=E6=9C=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/06.4.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eBook/06.4.md b/eBook/06.4.md index 800f8a7..b0682cf 100644 --- a/eBook/06.4.md +++ b/eBook/06.4.md @@ -11,16 +11,16 @@ package main import "fmt" func main() { - Function1() + function1() } -func Function1() { +func function1() { fmt.Printf("In Function1 at the top\n") - defer Function2() + defer function2() fmt.Printf("In Function1 at the bottom!\n") } -func Function2() { +func function2() { fmt.Printf("Function2: Deferred until the end of the calling function!") } ```