mirror of
https://bitbucket.org/Mattrixwv/cstutorials.git
synced 2025-12-06 18:34:03 -05:00
19 lines
346 B
C#
19 lines
346 B
C#
//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");
|
|
}
|
|
}
|
|
} |