Skip to content

Instantly share code, notes, and snippets.

@mzimmerman
Last active December 24, 2015 12:09
Show Gist options
  • Save mzimmerman/6795900 to your computer and use it in GitHub Desktop.
Save mzimmerman/6795900 to your computer and use it in GitHub Desktop.
Go Conversion
package main
type simple float64
func test(x float64) float64 {
return float64(simple(x))
}
func main() {
test(2.5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment