cortex_lang/preprocessing/
program.rs

1use super::ast::function::RInterpretedBody;
2
3pub struct Program {
4    pub(crate) code: RInterpretedBody,
5}