quickscript 0.5.5

A quick programming language with a compiler implemented in Rust.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use object::write::Object;

pub fn strip_binary(_bin: &mut Object) -> Result<()> {
    eprintln!("Binary stripping has not been implemented!");

    Ok(())
}