added error printing

This commit is contained in:
Elusive Porpoise
2023-05-19 11:36:16 -07:00
parent eff4833840
commit 223ae61c89

View File

@@ -2145,6 +2145,10 @@ or_return_operator :: proc() {
return -345 * z, zerr
}
defer if err != nil {
fmt.println("Error in", #procedure, ":" , err)
}
n = 123
return
}