Skip to content

Commit ab13a50

Browse files
authored
Merge pull request mouredev#7428 from angel-tineo/main
#00 - C#
2 parents 42c770d + 72898b5 commit ab13a50

File tree

1 file changed

+20
-0
lines changed
  • Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/c#

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//https://dotnet.microsoft.com/en-us/
2+
3+
//Ejemplo de comentario simple
4+
/*
5+
Ejemplo comentarios
6+
en varias lineas
7+
*/
8+
9+
var Variable = 1;
10+
const int CONSTANTE = 3;
11+
12+
int MyInt = 2;
13+
float MyFlot = 3.14f;
14+
double MyDoble = 3.14;
15+
bool MyBool = true;
16+
decimal MyDecimal = 1.5m;
17+
char MyChar = 'a';
18+
string MyString = "Cadena";
19+
20+
Console.WriteLine("Hola, C#");

0 commit comments

Comments
 (0)