Skip to content

Instantly share code, notes, and snippets.

@chuckha
Created August 19, 2014 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuckha/11e304f20d68e46b2c9a to your computer and use it in GitHub Desktop.
Save chuckha/11e304f20d68e46b2c9a to your computer and use it in GitHub Desktop.
Straight up breaks the playground
func test() -> String {
func innerTest(n: Int) -> String {
if n == 0 {
return "Blast off"
}
return innerTest(n - 1)
}
return innerTest(10)
}
println(test())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment