Skip to content

Instantly share code, notes, and snippets.

@mildocjr
Created August 11, 2018 01:50
Show Gist options
  • Select an option

  • Save mildocjr/d146b4645742a5e443bec4a3149a9d12 to your computer and use it in GitHub Desktop.

Select an option

Save mildocjr/d146b4645742a5e443bec4a3149a9d12 to your computer and use it in GitHub Desktop.
type-cast-2
var someInteger = 4
var someDouble: Double?
someDouble = Double(someInteger)
print(someDouble) // prints "4.0" (the .0 is because it was
// previously a Double
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment