add rust hello_world project

main
Jonas Arnold 3 years ago
parent 9908758edc
commit d1f90dbc5b
  1. 7
      ASYD_Trends/Rust/hello_world/Cargo.lock
  2. 8
      ASYD_Trends/Rust/hello_world/Cargo.toml
  3. 3
      ASYD_Trends/Rust/hello_world/src/main.rs

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "hello_world"
version = "0.1.0"

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

@ -0,0 +1,3 @@
fn main() {
println!("Hello, Jonas!");
}
Loading…
Cancel
Save