mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Add editor/ crate
This commit is contained in:
parent
ce9e7a91f6
commit
50357acd55
4 changed files with 101 additions and 0 deletions
8
editor/src/lib.rs
Normal file
8
editor/src/lib.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
use std::io;
|
||||
|
||||
/// The editor is actually launched from the CLI if you pass it zero arguments.
|
||||
pub fn launch() -> io::Result<()> {
|
||||
println!("TODO launch the editor.");
|
||||
|
||||
Ok(())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue