Created
October 13, 2013 23:08
-
-
Save 7sharp9/6968399 to your computer and use it in GitHub Desktop.
Array declarations:
This file contains 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
let things = [|"One";"Two";"Three"|] | |
let things2 = [|"One" | |
"Two" | |
"Three"|] | |
let things3 = [| | |
"One" | |
"Two" | |
"Three" | |
|] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment