Last active
January 31, 2017 20:17
-
-
Save ptrelford/5d71fdd60e2a7c7088731ba6952a439b to your computer and use it in GitHub Desktop.
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; | |
using System.Xml; | |
using static Variables; | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
for (i = 0; i < 10; i++) | |
{ | |
s = "Hello World!"; | |
Console.WriteLine(s); | |
} | |
} | |
} | |
public static class Variables | |
{ | |
public static int i, index; | |
public static string s, text; | |
public static XmlDocument doc; | |
public static XmlNode node; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment