Created
January 9, 2016 19:45
-
-
Save aciidgh/766d9b5480be6e3faf64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ swift | |
Welcome to Apple Swift version 2.2-dev (LLVM 3ebdbb2c7e, Clang f66c5bb67b, Swift 54dcd16759). Type :help for assistance. | |
1> let a = 5 | |
a: Int = 5 | |
2> a | |
$R0: Int = 5 | |
3> let a = "hello" | |
a: String = "hello" | |
4> a | |
$R1: String = "hello" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment