kos 0.1.0

The K-Scale Operating System
Documentation
1
2
3
4
5
6
7
8
9
10
mod config;
mod runner;
mod state;

use runner::run;
use std::sync::{Arc, RwLock};

pub fn main() {
    run(Arc::new(RwLock::new(state::State::new())));
}