rail-lang 0.30.2

A straightforward programming language. Rail is currently experimental and subject to drastic breaking changes.
Documentation
use std::env;
use std::fs;
use std::path::Path;

fn main() {
    println!("cargo:rerun-if-changed=rail-src");
    copy_rail_libs();
}

fn copy_rail_libs() {
    let from = Path::new(&env::var("CARGO_MANIFEST_DIR").unwrap())
        .join("rail-src")
        .join("stdlib");
    let to = Path::new(&env::var("OUT_DIR").unwrap()).join("stdlib");

    fs::create_dir(to.clone()).unwrap_or(());

    let lib_files = fs::read_dir(from)
        .expect("Could not find rail stdlib")
        .collect::<Vec<_>>();

    assert_ne!(0, lib_files.len());

    lib_files
        .into_iter()
        .map(|dir_entry| dir_entry.unwrap())
        .for_each(|file| {
            let from = file.path();

            let file_name = from.file_name().unwrap();
            let to = to.join(file_name);

            fs::copy(from, to).unwrap();
        });
}