iridium 0.0.33

A resilient VM for the Palladium language
Documentation
1
2
3
4
5
6
7
8
9
pub struct CommandParser {}

impl CommandParser {
    pub fn tokenize(input: &str) -> Vec<&str> {
        let split = input.split_whitespace();
        let vec: Vec<&str> = split.collect();
        vec
    }
}