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
use super::data_type::DataType;

#[derive(PartialEq, Debug, Clone)]
pub enum Param {
    Tag(String, Option<usize>),
    Variable(String),
    Value(DataType),
}