add debug mode

This commit is contained in:
Alex Zenla
2025-07-26 00:47:32 -07:00
parent 8d8866c26c
commit ff2aaabd93
12 changed files with 109 additions and 19 deletions

15
examples/bad.pork Normal file
View File

@ -0,0 +1,15 @@
func depth(i: int32) {
println("Depth: ", i)
}
export func main() {
if true {
false
}
if false {
true
}
return println("uhm, bad")
}