Skip to content

Instantly share code, notes, and snippets.

@kimitoboku
Created May 3, 2014 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimitoboku/11492207 to your computer and use it in GitHub Desktop.
Save kimitoboku/11492207 to your computer and use it in GitHub Desktop.
A Tour of Go#7
package main
import (
"fmt"
)
func add(x int,y int) int {
return x+y
}
func main(){
fmt.Println(add(100,32432))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment