hecto/src/main.rs

16 lines
254 B
Rust
Raw Normal View History

2021-01-28 16:47:40 -05:00
#![warn(clippy::all, clippy::pedantic)]
2021-03-08 10:21:06 -05:00
mod document;
2021-01-28 16:47:40 -05:00
mod editor;
2021-03-08 10:21:06 -05:00
mod row;
2021-03-05 16:36:39 -05:00
mod terminal;
2021-01-22 19:36:11 -05:00
2021-03-08 10:21:06 -05:00
pub use document::Document;
2021-01-28 16:47:40 -05:00
use editor::Editor;
2021-03-08 09:50:15 -05:00
pub use editor::Position;
2021-03-08 10:21:06 -05:00
pub use row::Row;
pub use terminal::Terminal;
2021-01-22 19:36:11 -05:00
fn main() {
2021-01-28 16:47:40 -05:00
Editor::default().run();
2021-01-22 19:36:11 -05:00
}