DEV Community

Discussion on: 10 Programming Languages Side by Side (JS, Python, Ruby, PHP, GO, Rust, Dart, C#, Java, Ballerina)

Collapse
 
aloneguid profile image
Ivan G

C# samples are out of date, i.e. instead of

using System;

namespace HelloWorldApp {
  class HelloWorld {
    static void Main(string[] args){
      Console.WriteLine("Hello World");
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

you can just write

System.Console.WriteLine("Hello World!");
Enter fullscreen mode Exit fullscreen mode

But thanks for trying.