bundler 0.1.1

Creates a single-source-file version of a Cargo package.
1
2
3
4
5
6
7
8
9
mod internal {
    pub fn hello_world() {
        println!("Hello, world!");
    }
}
pub use internal::hello_world;
fn main() {
    hello_world();
}