oters_gui 0.1.6

Graphical library definitions for the oters programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate oters_gui;
extern crate oters_lang;
use oters_lang as oters;

fn main() {
    let config = oters_gui::WindowConfig {
        title: "Standard Library Test".to_string(),
        dimensions: (720, 480),
        resizable: true,
        fullscreen: false,
        icon: None,
    };
    oters_lang::run!(
        vec!["./oters_gui/examples/stdlib_test.otrs".to_string()],
        config,
    );
}