This modifies the panic feature to accept a boolean or a string. If true or not empty, then it will cause the panic. This makes some of the error code a little less ugly.
7 lines
162 B
Plaintext
7 lines
162 B
Plaintext
-- main.mcl --
|
|
# This should panic!
|
|
panic("please panic")
|
|
test "hello" {}
|
|
-- OUTPUT --
|
|
# err: errStream: func `panic @ 0x0000000000` stopped before it was loaded
|