]> git.sondrewold.no Git - octo.git/commitdiff
Initial commit
authorSondre Wold <[email protected]>
Sat, 20 Apr 2024 15:58:09 +0000 (17:58 +0200)
committerSondre Wold <[email protected]>
Sat, 20 Apr 2024 15:58:09 +0000 (17:58 +0200)
README.md [new file with mode: 0644]
octo/Cargo.toml [new file with mode: 0644]
octo/src/main.rs [new file with mode: 0644]

diff --git a/README.md b/README.md
new file mode 100644 (file)
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 (file)
index 0000000..17e593b
--- /dev/null
@@ -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 (file)
index 0000000..e7a11a9
--- /dev/null
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}