Initial commit with a few examples

This commit is contained in:
2020-08-14 18:41:47 -04:00
commit aa0de90361
5 changed files with 133 additions and 0 deletions

19
HelloWorld.cs Normal file
View File

@@ -0,0 +1,19 @@
//C#/Tutorials/HelloWorld.cs
//Matthew Ellison
// Created: 07-29-20
//Modified: 07-29-20
//This is a simple hello world program
using System;
namespace mee{
public class HelloWorld{
static void Main(string[] args){
Console.WriteLine("Hello World");
string testString = "World";
Console.WriteLine($"Hello {testString} 2");
}
}
}