Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 18, 2015 20:49
Show Gist options
  • Save Fhernd/5843321 to your computer and use it in GitHub Desktop.
Save Fhernd/5843321 to your computer and use it in GitHub Desktop.
using System; // Importación de namespace
class Prueba // Declaración de clase
{
static int Main(string[] args) // Declaración de método
{
int x = 12 * 30; // Sentencia 1
Console.WriteLine(x); // Sentencia 2
} // Fin del método
} // Fin de la clase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment