Function ::std::panic

Overview
fn panic(message: String) -> Tuple

Cause a vm panic with the given message.

A panic in Rune causes the current execution to unwind and terminate. The panic will not be propagated into Rust, but will instead be signatted through a VmError.

If you want to format a message, consider using the panic! macro.