mirror of
https://github.com/apple/swift.git
synced 2026-03-04 18:24:35 +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)
|
|
}
|
|
}
|