We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 238a17b + 96f3acf commit bd6bd12Copy full SHA for bd6bd12
Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/c#/miguelgargallo.cs
@@ -0,0 +1,20 @@
1
+// URL del sitio web oficial de C#: https://learn.microsoft.com/en-us/dotnet/csharp/
2
+
3
+// Comentario de una sola línea en C#
4
5
+/*
6
+ Comentario de varias líneas en C#
7
+*/
8
9
+// Declaración de variable y constante
10
+string nombreIdioma = "C#";
11
+const string SALUDO = "¡Hola, ";
12
13
+// Tipos de datos primitivos en C#
14
+int numero = 42;
15
+double numeroFraccionario = 3.14;
16
+bool esDivertidoProgramar = true;
17
+char caracterIndividual = 'A';
18
19
+// Imprimir el mensaje
20
+Console.WriteLine(SALUDO + nombreIdioma + "!");
0 commit comments