Example #1
0
File: gomk.go Project: akutz/gomk
// Sum returns the sum of two integers.
func Sum(x, y int) int {
	return lib.Sum(x, y)
}
Example #2
0
File: cli.go Project: akutz/gomk
func main() {
	fmt.Printf("%d\n", lib.Sum(2, 3))
	fmt.Printf("%s\n", core.ToLower("Goodbye!"))
}