Last active
May 3, 2020 09:59
-
-
Save Beelzenef/7aed824b4dc7fccb20c40cdc30d56555 to your computer and use it in GitHub Desktop.
Ejemplo de aplicación de consola para medium.com/puntotech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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