Skip to content

Instantly share code, notes, and snippets.

@rolaveric
Created March 2, 2014 06:53
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 rolaveric/9302936 to your computer and use it in GitHub Desktop.
Save rolaveric/9302936 to your computer and use it in GitHub Desktop.
A simple example of strict typing in Go
func Triple(input int) int {
// This line would be really awkward if we were allowed to accept a string
return input * 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment