From 1387a1024d9962e24caef93f00f1a1425df8dac0 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 14 Sep 2018 21:00:52 +0200 Subject: [PATCH] examples/test: small cleanup I forgot to remove some commented out code... --- src/examples/test/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/test/test.go b/src/examples/test/test.go index eaa992d0..7d10b0a9 100644 --- a/src/examples/test/test.go +++ b/src/examples/test/test.go @@ -77,7 +77,7 @@ func main() { testDefer() testBound(thing.String) func() { - println("thing inside closure:", thing.String()) //, len(foo)) + println("thing inside closure:", thing.String()) }() runFunc(func(i int) { println("inside fp closure:", thing.String(), i)