/*
2.2 -- May 14, 2014
===
* User Accounts
* Fixed Unicode issue when rendering pages for MVC project type
2.0 -- Mar 20, 2014
* New look for UI
* MVC Collaboration
* F# tabs are automatically converted to spaces
1.10 -- Feb 26, 2014
====
* MVC Project Type
1.9 -- Feb 12, 2014
* Intellisense for methods now works like it does in Visual Studio
* F# Dump is now available in Auto Complete methods list
* F# Intellisense works for classes from NuGet packages
1.8 -- Jan 28, 2014
* Support for Console.ReadLine. Users can enter Console Input into Output section if Console.ReadLine is detected
* Fix for Auto Complete popup getting stuck in certain cases
* Fix for In-progress indicator getting stuck in bottom right corner, if you clicked Run button many times
* Top Remote Developers link
1.7 -- Jan 22, 2014
* Advanced Widget Builder to created interactive, multi-language widgets embeddable into users's blog or website
* Await and Dynamic keywords do not show validation errors in C# Console. Await keyword works in VB.NET Console too
* Auto Complete for F# shows arguments in class constructors when typing "new "
1.6 -- Jan 14, 2014
* Support for F#
* Last Run time is now displayed in local time, not GMT
* Fix for NuGet Package versions Auto Complete going off the screen if there are many versions
1.5 -- Dec 31, 2013
* Allow Internet access in Fiddles
* Allow File IO access in Fiddles
* Fix several Auto Complete issues with Mobile
* Can now reference System.Web to use classes like HttpUtility
1.4 -- Dec 24, 2013
* Added support for referencing NuGet packages
1.3 -- Dec 10, 2013
* Introducing Interactive project type, which works like Scripting in C# and VB.NET. Main method or class or
namespace is not need. You can just write statements directly, for ex: "using System; Console.WriteLine("Hello World");"
* Compilation speed has been reduced 5-10X.
* Gzip was enabled on AJAX JSON responses with 2-5X savings in data transfer sizes
* Auto Complete now shows only static methods in static context like "SomeClass."
and instance methods on instance of the class for ex. "var someClass = new SomeClass(); someClass."
* Auto Complete includes extension methods which is especially evident when you use "System.Linq"
1.2 -- Dec 3, 2013
* Interactive widget for embedding sample code into your own site or blog. Visitors can view both, code and output. They can also edit
sample code and run their own variation, all without leaving your page. Available through Share popup.
* Auto Complete now works if you declare your class inline. For example if you type "new MyClass()."
1.1 -- Nov 26, 2013
* Dump() system extension, similar to Linqpad Dump. Allows to display object properties as well as sub-objects in console. For ex. anyObj.Dump()
* Collaboration issues where only host can see run results are fixed
* Collaboration options are now synced between all connected users
* Auto Complete now works for namespaces after using and imports keywords
* Auto Complete is case insensitive
* Double-clicking on error in output window will place cursor on error. Error line in output must have a line number in it.
* Auto Complete works for partial match, so if you type Console.Line - you will have an option of WriteLine in a list
* System.Numerics namespace is now available
* All www.dotnetfiddle.net requests are routed to dotnetfiddle.net
* Updated About page
* Added Contact Us and Change Log menu items
* Split "Feedback" button into Support and User Voice to make it more clear
1.0 -- Nov 20, 2013
* First release
*/
using System;
public class Program
{
public void Main()
Console.WriteLine("CHANGE LOG");
Console.WriteLine("==========");
Console.WriteLine();
Console.WriteLine("Look up...");
}