Merge branch 'master' into master

This commit is contained in:
Livar 2018-02-08 16:39:20 -08:00 committed by GitHub
commit adfc2037db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
206 changed files with 5449 additions and 2647 deletions

View file

@ -10,6 +10,14 @@ namespace ConsoleApplication
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
if (args.Length > 0)
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine($"{i} = {args[i]}");
}
}
}
}
}