commit 6bc1e3ec494a1f1bd193e0c7745cbefe2be6ed6c Author: kirbylife Date: Sat Sep 25 16:30:02 2021 -0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cb805c6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "analte" +version = "0.1.0" +authors = ["kirbylife "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..07d66f1 --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +# Analte +### Analte, Maya word that means "talking tree" (árbol que habla) + +## Usage +Soon :) + +written in Rust the ran originally in the Raspberry Pi Pico with a Waveshare 7.5 inch e-ink screen. diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}