Programming Fundamentals/Introduction/C Sharp: Difference between revisions

From Wikiversity
Jump to navigation Jump to search
Content deleted Content added
m See Also
Line 12: Line 12:
== Try It ==
== Try It ==
* [https://repl.it/EJlO/1 repl.it]
* [https://repl.it/EJlO/1 repl.it]
* [https://www.tutorialspoint.com/compile_csharp_online.php TutorialsPoint]


== See Also ==
== See Also ==

Revision as of 17:47, 30 October 2016

hello.cpp

public class Hello
{
   public static void Main()
   {
      System.Console.WriteLine("Hello world!");
   }
}

Try It

See Also