osmon 0.5.0

A programming language for Uzbeks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    #[cfg(target_os = "windows")]
    {
        extern crate winres;

        let mut res = winres::WindowsResource::new();
        res.set_icon("osmon.ico");
        res.set_language(winapi::um::winnt::MAKELANGID(
            winapi::um::winnt::LANG_UZBEK,
            winapi::um::winnt::SUBLANG_UZBEK_LATIN,
        ));
        res.compile().unwrap();
    }
}