Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 21, 2017 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d435504681b7eec4fb789e420bc1dcbb to your computer and use it in GitHub Desktop.
Save parzibyte/d435504681b7eec4fb789e420bc1dcbb to your computer and use it in GitHub Desktop.
Hola mundo en C#
using System;
namespace App
{
class Programa
{
static void Main(string[] args)
{
Console.WriteLine("Hola mundo");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment