aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/functions/functions3/main.go
blob: 55598411f92b390f78084781e963401b6138a785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// functions3
// Make me compile!

// I AM NOT DONE
package main

import "fmt"

func main() {
	call_me()
}

func call_me(num int) {
	for n := 0; n <= num; n++ {
		fmt.Printf("Num is %d\n", n)
	}
}