Programas en C#

Tuesday, October 17, 2006

1. Mi primer programa. Programa que escriba “HOLA MUNDO”

using System;
using System.Collections.Generic;
using System.Text;

namespace saludos
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hola, Mundo”");
}
}
}

0 Comments:

Post a Comment

<< Home