mssh 0.0.0

Mssh Simple SHell. Bash interpreter/compiler. Will not support all the functionalities.
1
2
3
4
5
6
7
8
9
10
pub fn invalid_var(row: usize, col: usize) -> String {
    format!("invalid variable starting from {row}:{col}")
}

pub fn unclosed_quote(row: usize, col: usize) -> String {
    format!("unclosed quote starting from {row}:{col}")
}
pub fn unclosed_block(row: usize, col: usize) -> String {
    format!("unclosed block starting from {row}:{col}")
}