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
fn main() {
    let config = oters::WindowConfig {
        title: "My Oters App".to_string(),
        dimensions: (800, 600),
        resizable: true,
        fullscreen: false,
        icon: None,
    };
    oters::run!(
        vec!["./examples/loop_test/loop_test.otrs".to_string()],
        config,
    );
}