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