blob: c920e4198d173eb0a5f6ae276bf2ba9c37479f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
pub mod step;
pub mod util;
/// A leaf node for S-Expressions.
///
/// May represent built-in operators,
/// variables (to be added), functions
/// (to be added) or values.
#[derive(Debug)]
#[derive(PartialEq)]
pub enum SLeaf {
Add,
Sub,
Mul,
Div,
Int(i32),
}
/// An S-Expression; the defining structure of the language.
#[derive(Debug)]
#[derive(PartialEq)]
pub enum SExp {
SCons(Box<SExp>, Box<SExp>),
Atom(SLeaf),
}
|