This a small text editor written entirely in Rust. It's based on this tutorial written in C.
This tutorial is meant to introduce programming in a fun and easy to understand way. It's also meant to be used as a starting point for writing console based text editors and command line interface.
To use, clone the repository and execute
cargo run --release
You can also pass a file name as an argument. For instance
cargo run --release /src/main.rs
View the full tutorial on how to write a text editor with Rust here.