From ce2295e2f54fb008cd03b56294bc8de0da00abb4 Mon Sep 17 00:00:00 2001 From: Bernardo Gualberto <57423766+BernardoDeveloper@users.noreply.github.com> Date: Tue, 3 Jan 2023 10:25:03 -0300 Subject: [PATCH] explain how work the Printf --- 01_getting-started/02_numeral-systems/02_binary/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_getting-started/02_numeral-systems/02_binary/main.go b/01_getting-started/02_numeral-systems/02_binary/main.go index 4e540f92..96356c0b 100644 --- a/01_getting-started/02_numeral-systems/02_binary/main.go +++ b/01_getting-started/02_numeral-systems/02_binary/main.go @@ -3,5 +3,5 @@ package main import "fmt" func main() { - fmt.Printf("%d - %b \n", 42, 42) + fmt.Printf("%d - %b \n", 42, 42) // explains how it works: https://pkg.go.dev/fmt }