piske 0.1.2

The piske programming langauge for generative art
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Abstract syntax tree definition and associated types and implementations.

pub mod annotation;
pub use self::annotation::Annotation;

pub mod ast;
pub use self::ast::*;

pub mod display;
pub mod inference;
pub mod operator;