magc 0.8.0

The Mag Language Compiler
Documentation
1
2
3
4
5
6
7
use crate::types::Expression;

#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct VarDeclaration {
    pub name: String,
    pub value: Box<Expression>,
}