pr47 0.0.1

A semi-experimental programming language. Still working in progress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::any::TypeId;

#[derive(Debug)]
pub enum Pr47Error {
    TypeCast { from: TypeId, to: TypeId, from_name: &'static str, to_name: &'static str },
    NotBorrow,
    NotBorrowMut,
    NotMove,
    NotEnoughParam,
    TooManyParam,
    NullPointer,
    RustException { rust_error: Box<dyn std::error::Error> }
}