vrsh 0.1.2

A simple shell written for my own learning.
1
2
3
4
5
use crate::shell::common::state::State;

pub fn set_variable(key: String, val: String, state: &mut State) {
    state.variables.insert(key, val);
}