CodeWeek ParkTour 2017
As part of this years Europe Code Week today I and my colleagues from CoderDojo Wien had our first day at the main event in Austria, the CodeWeek ParkTour.
As part of this years Europe Code Week today I and my colleagues from CoderDojo Wien had our first day at the main event in Austria, the CodeWeek ParkTour.
using System; namespace Welcome { class App { static void Main() { Console.WriteLine("Welcome!"); // Keep the console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } } }