wright 0.10.1

The wright programming language compiler and tooling.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Statements in Wright source code.

use self::bind::Bind;

pub mod bind;

pub enum Statement<'src> {
    /// A variable or constant binding.
    Bind(Bind<'src>),
}