X-Language Docs
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Errors as Values

import math, math;

fn main() -> void {

    let val, err = math::tan(math::PI / 2);

    if err.isError {
        io::println("Error occured");
        std::exit(1);
    }

    io::print("tan(PI / 2) = ");
    io::println(val);
    std::exit(0);
}