Files
cs-oo-project/Online Gokkantoor/Console/Program.cs
Michiel.VanDorpe 60eb72bd30 voila
2019-03-13 16:37:03 +01:00

21 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Online Gokkantoor heet u welkom");
// Keep the console window open in debug mode.
Console.WriteLine("Druk op eender welke toets om af te sluiten.");
Console.ReadKey();
}
}
}