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

// I AM NOT DONE
package main

import "fmt"

func main() {
	fmt.Println("1 + 2 is: ", add_numbers(1, 2)) // don't change this line
}

func add_numbers(a int, b int) {
	return a + b
}