summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--go.html.markdown7
1 files changed, 0 insertions, 7 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 03227676..4ea6861b 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -214,13 +214,6 @@ func sentenceFactory(mystring string) func(before, after string) string {
}
}
-// Next two are equivalent, with second being more practical
-fmt.Println(learnFunctionFactory("summer")("A beautiful", "day!"))
-
-d := learnFunctionFactory("summer")
-fmt.Println(d("A beautiful", "day!"))
-fmt.Println(d("A lazy", "afternoon!"))
-
func learnDefer() (ok bool) {
// Deferred statements are executed just before the function returns.
defer fmt.Println("deferred statements execute in reverse (LIFO) order.")