From cbdab03c16abc0803d31507f91d0ab67a54f8002 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 20 Dec 2011 10:30:02 +0100 Subject: [PATCH] Add an extra newline in the output --- _examples/q/fp.go | 1 + 1 file changed, 1 insertion(+) diff --git a/_examples/q/fp.go b/_examples/q/fp.go index 3dd55d9d..b4885252 100644 --- a/_examples/q/fp.go +++ b/_examples/q/fp.go @@ -48,6 +48,7 @@ func startParse(addr string) { } } // Print out what we've gathered + fmt.Println() for _, i := range items { fmt.Printf("{%s %s}\n", itemString[i.typ], i.val) }