Files
pork/examples/bad.pork

16 lines
156 B
Plaintext
Raw Normal View History

2025-07-26 00:47:32 -07:00
func depth(i: int32) {
println("Depth: ", i)
}
export func main() {
if true {
false
}
if false {
true
}
return println("uhm, bad")
}