Skip to content

Instantly share code, notes, and snippets.

@Beelzenef
Last active May 3, 2020 09:59
Show Gist options
  • Save Beelzenef/7aed824b4dc7fccb20c40cdc30d56555 to your computer and use it in GitHub Desktop.
Save Beelzenef/7aed824b4dc7fccb20c40cdc30d56555 to your computer and use it in GitHub Desktop.
Ejemplo de aplicación de consola para medium.com/puntotech
using System;
namespace PuntoTechApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("¡Os damos la bienvenida a PuntoTechApp!");
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment