Skip to content

Commit a3c1d54

Browse files
authored
Merge pull request mouredev#3122 from gomezcamilo9701/main
#00 - c#
2 parents 236fda7 + 14d1c29 commit a3c1d54

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using System;
2+
3+
namespace CeroCero
4+
{
5+
class CeroCero
6+
{
7+
static void Main(string[] args)
8+
{
9+
//https://dotnet.microsoft.com/es-es/languages/csharp
10+
//Comentario
11+
/* O Comentario*/
12+
var variable = "la variable ve";
13+
const string CONSTANTE = "Constantebrrr";
14+
double doublee = 2.3;
15+
int inttt = 2;
16+
float floattt = 1.2f;
17+
decimal decimalll = 12.2m;
18+
bool bolll = true;
19+
int[] intArray = {1,2,3,4};
20+
(int, string) tuplaa = (2, "tupla");
21+
Console.WriteLine("¡Hola, C#!");
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)