Last active
December 19, 2015 01:29
-
-
Save Fhernd/5876143 to your computer and use it in GitHub Desktop.
Caso de estudio para entender la sintaxis de C#.
This file contains 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; | |
class EstudioSintaxisCSharp | |
{ | |
static void Main() | |
{ | |
int x = 12 * 30; | |
Console.WriteLine(x); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment