dolang-shell-main 0.1.0

Reusable shell/interpreter core for the Do language.
1
2
3
4
5
use dolang::runtime::{Error, Strand};

pub(crate) fn print_backtrace<'v, 's>(strand: &mut Strand<'v, 's>, error: Error<'v, 's>) {
    dolang_ext_shell::print_error_stderr(strand, error);
}