tagscript 0.1.2

TagScript is a drop in easy to use string interpreter that lets you provide users with ways of customizing their profiles or chat rooms with interactive text.
Documentation
1
2
3
4
5
6
// This type is used for associating actions with the type
#[derive(Debug, Clone, PartialEq)]
pub enum Action {
    Message(String),
    Stop(bool),
}