Introduction
Dart is a new and a very powerful Web programming language. It is developed by
Google. The objective of this language to replace JavaScript in web development.
Dart is also an scripting language like JavaScript. Developer of Dart try
to solve problems of JavaScript. It good & easy for big projects. Dart provide
better security features. Google also working to Dart to enhance more feature.
Feature of Dart
A special version of Chromium that contain Dart virtual machine.
This dart virtual machine allow enables this browser to run Dart programs
without first being compiled to JavaScript.
A simple Dart Hello World program
main()
{
print('Hello World!');
}