neovim-gtk/src/main.rs

12 lines
99 B
Rust
Raw Normal View History

2016-03-16 14:39:53 +00:00
extern crate gtk;
extern crate cairo;
2016-03-16 15:25:25 +00:00
mod ui;
2016-03-16 14:39:53 +00:00
2016-03-16 15:25:25 +00:00
use ui::Ui;
2016-03-16 14:39:53 +00:00
2016-03-16 15:25:25 +00:00
fn main() {
Ui::new().start();
2016-03-16 14:39:53 +00:00
}