mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
20 lines
493 B
Rust
20 lines
493 B
Rust
#![warn(clippy::dbg_macro)]
|
|
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
|
|
|
|
#[cfg_attr(test, macro_use)]
|
|
extern crate pest;
|
|
#[cfg_attr(test, macro_use)]
|
|
extern crate pest_derive;
|
|
|
|
mod editor;
|
|
mod graphics;
|
|
mod ui;
|
|
mod window;
|
|
|
|
use std::io;
|
|
use std::path::Path;
|
|
|
|
pub fn launch(project_dir_path_opt: Option<&Path>) -> io::Result<()> {
|
|
editor::main::launch(project_dir_path_opt)
|
|
}
|