holey-bytes/hbxrt/src/main.rs

12 lines
325 B
Rust
Raw Normal View History

2023-09-26 16:36:27 -05:00
use std::io::{stdin, Read};
/// Holey Bytes Experimental Runtime
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut prog = vec![];
stdin().read_to_end(&mut prog)?;
eprintln!("WARNING! Bytecode valider has not been yet implemented and running program can lead to undefiend behaviour.");
Ok(())
}