Created
October 8, 2018 15:28
-
-
Save vialyx/6ec0b944cb02c9807910c0331076c6f0 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
// PUT code into playground | |
var globalVariable = "globalString" | |
func fly() { | |
var localVariable = "localString" | |
} | |
struct Airplane { | |
// Local Variable | |
var number: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment