feature: Adds hello world for gui.

This commit is contained in:
greysoh 2024-04-28 14:36:51 -04:00
parent 07dad7c9eb
commit 871fd4c2c5
No known key found for this signature in database
GPG key ID: FE0F173B8FC01571
4 changed files with 41 additions and 1 deletions

8
gui/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "gui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
gui/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}