oters 0.1.8

A Functional Reacitve Programming Language for writing GUI applications
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    let config = oters::WindowConfig {
        title: "UI Test".to_string(),
        dimensions: (800, 600),
        resizable: true,
        fullscreen: false,
        icon: None,
    };
    oters::run!(vec!["./examples/ui_test/main.otrs".to_string()], config,);
}