From c0399f79625dd5dff4c76c1b1df2505e3305016a Mon Sep 17 00:00:00 2001 From: clonbg Date: Mon, 22 May 2023 16:21:53 +0200 Subject: [PATCH] first commit --- README.md | 3 +++ hola_mundo/.gitignore | 1 + hola_mundo/Cargo.lock | 7 +++++++ hola_mundo/Cargo.toml | 8 ++++++++ hola_mundo/src/main.rs | 3 +++ 5 files changed, 22 insertions(+) create mode 100644 README.md create mode 100644 hola_mundo/.gitignore create mode 100644 hola_mundo/Cargo.lock create mode 100644 hola_mundo/Cargo.toml create mode 100644 hola_mundo/src/main.rs diff --git a/README.md b/README.md new file mode 100644 index 0000000..bdbd631 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +https://tinchicus.com/2022/09/26/rust-listado-del-curso-inicial/ + +- https://tinchicus.com/2022/06/01/rust-usando-a-cargo/ diff --git a/hola_mundo/.gitignore b/hola_mundo/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/hola_mundo/.gitignore @@ -0,0 +1 @@ +/target diff --git a/hola_mundo/Cargo.lock b/hola_mundo/Cargo.lock new file mode 100644 index 0000000..054317e --- /dev/null +++ b/hola_mundo/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "hola_mundo" +version = "0.1.0" diff --git a/hola_mundo/Cargo.toml b/hola_mundo/Cargo.toml new file mode 100644 index 0000000..e2df14f --- /dev/null +++ b/hola_mundo/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "hola_mundo" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/hola_mundo/src/main.rs b/hola_mundo/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/hola_mundo/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}