Created
April 15, 2015 20:17
-
-
Save liefersfl/2e398e5c563c07524b8e 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
func test(text: String, value: Int) { | |
println(text) | |
println(value) | |
} | |
test("Hallo", 4) | |
class Test { | |
class func test(text: String, value: Int) { | |
println(text) | |
println(value) | |
} | |
} | |
Test.test("Hallo", value: 4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment