orion_lib 7.4.0

A library for parsing and executing the Orion Programming Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Prelude.

pub use crate::error::Errors;

pub type Result<T> = color_eyre::Result<T>;

pub use std::format as f;

pub struct W<T>(pub T);

pub use color_eyre::eyre::{ContextCompat, WrapErr, bail};