Last active
December 18, 2015 20:49
-
-
Save Fhernd/5843321 to your computer and use it in GitHub Desktop.
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; // 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