Started rust port

This commit is contained in:
Kyler Olsen 2025-12-01 08:53:14 -07:00
parent 58f41e6bda
commit b70634b450
2 changed files with 9 additions and 0 deletions

6
SLS_Rust/sls/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "sls"
version = "0.1.0"
edition = "2021"
[dependencies]

3
SLS_Rust/sls/src/main.rs Normal file
View File

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