func depth(i: int32) { if i <= 0 { return None } println("Depth: ", i) depth(i - 1) } export func main() { if true { false } if false { true } if true { } else { } if false { } else { } depth(500) println("uhm, bad") }