Skip to content

Instantly share code, notes, and snippets.

@liefersfl
Created April 15, 2015 20:17
Show Gist options
  • Save liefersfl/2e398e5c563c07524b8e to your computer and use it in GitHub Desktop.
Save liefersfl/2e398e5c563c07524b8e to your computer and use it in GitHub Desktop.
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