oters 0.1.8

A Functional Reacitve Programming Language for writing GUI applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    let config = oters::WindowConfig {
        title: "Paint".to_string(),
        dimensions: (1080, 820),
        resizable: false,
        fullscreen: false,
        icon: None,
    };
    oters::run!(
        vec![
            "./examples/paint/colors.otrs".to_string(),
            "./examples/paint/main.otrs".to_string()
        ],
        config,
    );
}