mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 05:10:55 +00:00
16 lines
156 B
Plaintext
16 lines
156 B
Plaintext
func depth(i: int32) {
|
|
println("Depth: ", i)
|
|
}
|
|
|
|
export func main() {
|
|
if true {
|
|
false
|
|
}
|
|
|
|
if false {
|
|
true
|
|
}
|
|
|
|
return println("uhm, bad")
|
|
}
|