chap 2.5.0

Chap is an easy to learn, interpretive, scripting language written in Rust
Documentation
1
2
3
4
5
6
use crate::common::errors::Result;
use crate::{common::executable::ExecutableLine, runtime::Runtime};

pub fn pass(_runtime: &mut Runtime, _executable: &ExecutableLine) -> Result<()> {
    Ok(())
}