Skip to content

Instantly share code, notes, and snippets.

@Nub
Created June 12, 2014 16:45
Show Gist options
  • Select an option

  • Save Nub/4ccac6ec0e74a5c1e5bc to your computer and use it in GitHub Desktop.

Select an option

Save Nub/4ccac6ec0e74a5c1e5bc to your computer and use it in GitHub Desktop.
Welcome to Swift! Type :help for assistance.
1> let a = -3
la: Int = -3
2> let b = a.asUnsigned()
b: UInt = {
value = -3
}
3> println(b)
18446744073709551613
4> println(a)
-3
5> let c: UInt = 3
c: UInt = {
value = 3
}
6>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment