mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
14 lines
174 B
Swift
14 lines
174 B
Swift
func recurse(_ level: Int) {
|
|
if level % 100000 == 0 {
|
|
print(level)
|
|
}
|
|
recurse(level + 1)
|
|
}
|
|
|
|
@main
|
|
struct StackOverflow {
|
|
static func main() {
|
|
recurse(1)
|
|
}
|
|
}
|