lisette-stdlib 0.2.4

Little language inspired by Rust that compiles to Go
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod go_modules;
mod target;

pub use go_modules::{
    get_go_stdlib_package_targets, get_go_stdlib_packages, get_go_stdlib_typedef,
};
pub use target::{Target, format_targets};

pub const LIS_PRELUDE_SOURCE: &str = include_str!("../prelude.d.lis");

include!(concat!(env!("OUT_DIR"), "/stdlib_hash.rs"));