feat: initialize new Rust project with basic structure
All checks were successful
Release / Release (push) Successful in 33s

This commit is contained in:
Jan Gleytenhoover 2024-08-28 07:49:23 +02:00
parent 28edcb2255
commit 1af0dd819d
Signed by: jank
GPG Key ID: B267751B8AE29EFE
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored Normal file

@ -0,0 +1 @@
/target

6
Cargo.toml Normal file

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

3
src/main.rs Normal file

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