From cafb56438230752ea44fe391f2136d4c8e0dee90 Mon Sep 17 00:00:00 2001 From: clonbg Date: Thu, 15 Jun 2023 17:15:33 +0200 Subject: [PATCH] reto05 --- ejercicios/reto05/Cargo.toml | 8 ++++++++ ejercicios/reto05/src/main.rs | 11 +++++++++++ 2 files changed, 19 insertions(+) create mode 100644 ejercicios/reto05/Cargo.toml create mode 100644 ejercicios/reto05/src/main.rs diff --git a/ejercicios/reto05/Cargo.toml b/ejercicios/reto05/Cargo.toml new file mode 100644 index 0000000..45bf511 --- /dev/null +++ b/ejercicios/reto05/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "reto05" +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/ejercicios/reto05/src/main.rs b/ejercicios/reto05/src/main.rs new file mode 100644 index 0000000..8a95ee8 --- /dev/null +++ b/ejercicios/reto05/src/main.rs @@ -0,0 +1,11 @@ +/* + * Escribe un !Hola Mundo! en todos los lenguajes de programación que puedas. + * Seguro que hay algún lenguaje que te llama la atención y nunca has utilizado, + * o quizás quieres dar tus primeros pasos... ¡Pues este es el momento! + * + * A ver quién se atreve con uno de esos lenguajes que no solemos ver por ahí... + */ + +fn main() { + println!("Hello, world!"); +}