aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: dd6400121e36158196ee736d589a5617592972e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
use std::fs::File;
use std::io::{self, Write};

fn main() -> io::Result<()> {
    let mut f = File::create("/debug.txt")?;
    f.write_all("boot successful".as_bytes())?;

    Ok(())
}