mirror of
https://bitbucket.org/Mattrixwv/cstutorials.git
synced 2025-12-06 18:34:03 -05:00
Initial commit with a few examples
This commit is contained in:
19
HelloWorld.cs
Normal file
19
HelloWorld.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user