1
0
Fork 0

Init cargo project

This commit is contained in:
Vili Sinervä 2025-01-15 14:52:54 +02:00
parent 54f092ad6a
commit 5d9aab2043
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
3 changed files with 14 additions and 0 deletions

5
.gitignore vendored
View file

@ -19,3 +19,8 @@ Cargo.lock
result
result-*
# Added by cargo
/target

6
Cargo.toml Normal file
View file

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

3
src/main.rs Normal file
View file

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