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
use crate::vm::Pr47Ptr;
use crate::error::Pr47Error;

pub trait CastIntoPr47<T> {
    fn cast_from_any(t: T) -> Result<Pr47Ptr, Pr47Error>;
}

impl<T: 'static> CastIntoPr47<T> for T {
    default fn cast_from_any(t: T) -> Result<Pr47Ptr, Pr47Error> {
        unimplemented!()
    }
}