fix: 25-funcs explanations

This commit is contained in:
Inanc Gumus
2019-06-21 10:17:05 +03:00
parent 4eeb721db0
commit f91086a009
3 changed files with 3 additions and 19 deletions

View File

@@ -11,10 +11,9 @@ import "fmt"
func showN() {
if N == 0 {
fmt.Println("showN : N is zero, increment it.")
return
}
fmt.Printf("showN : N = %d\n", N)
fmt.Printf("showN : N is %d\n", N)
}
func incrN() {