petr_stdlib/
lib.rs

1/// returns all files in the standard library
2pub fn stdlib() -> Vec<(&'static str, &'static str)> {
3    vec![
4        ("std/ops.pt", include_str!("ops.pt")),
5        ("std/io.pt", include_str!("io.pt")),
6        ("std/mem.pt", include_str!("mem.pt")),
7    ]
8}