From d8e74cf4d2d134eafa58313aee97b5264adee464 Mon Sep 17 00:00:00 2001 From: Sondre Wold Date: Sat, 20 Apr 2024 17:58:09 +0200 Subject: [PATCH 1/1] Initial commit --- README.md | 4 ++++ octo/Cargo.toml | 8 ++++++++ octo/src/main.rs | 3 +++ 3 files changed, 15 insertions(+) create mode 100644 README.md create mode 100644 octo/Cargo.toml create mode 100644 octo/src/main.rs 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!"); +} -- 2.39.5