Structured Web Programming with Dart

Help us Grow and SHARE with your friends

What is Dart?

Dart is a new programming language created by Google. Dart is especially suited for developing all kind of web applications. Structured web programming as they like to call it.

You can use Dart for both client-side as well as server-side software development. On the client-side (= browser or mobile) you can see it as an enhancement of JavaScript. On the server-side you can use it instead of languages like PHP and Java. So now you can develop web applications having to learn only one language.

Some of the major features of Dart:

  • An (optional) typing system
  • Support for interfaces and classes
  • New API for accessing the browser DOM

To find out more about Dart, checkout our document section on this website.

Hello World

And any site about a programming language is not complete without the obligatory "hello world" example. So here we go:

main () {
    print("Hello World!");
}