Skip to content

Instantly share code, notes, and snippets.

@d-date
Created May 1, 2017 12:32
Show Gist options
  • Save d-date/e71302710272ac33b9115428d65cbd8c to your computer and use it in GitHub Desktop.
Save d-date/e71302710272ac33b9115428d65cbd8c to your computer and use it in GitHub Desktop.
そういえば、Literalで浮動小数点書いたときはDoubleになるんですね #CodePiece #minna_de_swift
func something(value: Float) {
print("float")
}
func something(value: Double) {
print("double")
}
something(value: 0.1234) //double
something(value: 0.1234) //double
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment