chap 2.5.0

Chap is an easy to learn, interpretive, scripting language written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub struct LineOfCode {
    pub line_number: u32,
    pub code: String,
}

impl LineOfCode {
    pub fn new(line_number: u32, code: String) -> Self {
        Self { line_number, code }
    }
}