Skip to content
Snippets Groups Projects
command.rs 184 B
Newer Older
aalbert's avatar
aalbert committed
use crate::Term;
//use std::fmt::{Display, Formatter};

#[derive(Clone, Debug, PartialEq)]
pub enum Command {
    Define(String, Term),
    CheckType(Term, Term),
    GetType(Term),
}