From: Sondre Wold Date: Sat, 20 Apr 2024 15:58:09 +0000 (+0200) Subject: Initial commit X-Git-Url: https://letsjmore.com/?a=commitdiff_plain;h=d8e74cf4d2d134eafa58313aee97b5264adee464;p=octo.git Initial commit --- d8e74cf4d2d134eafa58313aee97b5264adee464 diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a5387d --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# OCTO: A minimal text editor + +This is based on [hecto](https://www.flenker.blog/hecto/) which is a +re-write of [kilo](http://antirez.com/news/108) to Rust. diff --git a/octo/Cargo.toml b/octo/Cargo.toml new file mode 100644 index 0000000..17e593b --- /dev/null +++ b/octo/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "octo" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/octo/src/main.rs b/octo/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/octo/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}