From 7d41c21efed5e685145fd87730291ae0f505e554 Mon Sep 17 00:00:00 2001 From: JSinning <43380469+JSinning@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:04:42 +0000 Subject: [PATCH 1/2] feat: console, varible string y convinacion entre varibles y cadena --- tutorials/hello-world.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tutorials/hello-world.cs diff --git a/tutorials/hello-world.cs b/tutorials/hello-world.cs new file mode 100644 index 0000000..10c4a1b --- /dev/null +++ b/tutorials/hello-world.cs @@ -0,0 +1,12 @@ + // primeros paso +Console.WriteLine("hello world!"); +string name = "bill"; +Console.WriteLine(name); +name = "maria"; +Console.WriteLine(name); +name = "marcos"; +Console.WriteLine("hola " + name); +name = "juan"; +Console.WriteLine($"hola soy {name}"); + +// Convinacion entre cadenas From 50c804c3c46102ecf8497a3997f9698c1c7fc61b Mon Sep 17 00:00:00 2001 From: JSinning <43380469+JSinning@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:10:43 +0000 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20convinar=20mas=20de=20una=20cadena?= =?UTF-8?q?=20y=20saber=20el=20tama=C3=B1o=20de=20una=20cadena?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tutorials/hello-world.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tutorials/hello-world.cs b/tutorials/hello-world.cs index 10c4a1b..fb45d6c 100644 --- a/tutorials/hello-world.cs +++ b/tutorials/hello-world.cs @@ -10,3 +10,7 @@ Console.WriteLine($"hola soy {name}"); // Convinacion entre cadenas +string fristname = "marcos"; +string secondname = "antonio"; +Console.WriteLine($"mi primer bre es {fristname} and {secondname}"); +Console.WriteLine($"mi nombre es {fristname} y tine {fristname.Length} letras"); \ No newline at end of file