Dart is an object-oriented, structured programming language designed for web developers to develop Web-based applications from google.Dart is still in the early stages of development.
Current browser support:Chrome, Safari 5+, Firefox 4+.
Main features:
Classes
Optional types
libraries
tooling
Example hello world Code:
main() {
var name = 'World';
print('Hello, ${name}!');
}
Output:
Hello, World!
