Object-Oriented language ( Classes , Inheritance ...)
Supports types, without requiring them.
Supports code sharing ( Pub ... )
is Open Source https://code.google.com/p/dart/
1- QUICKSTART
What is Dart ?
2- Write DART CODE
Basic Code
// Define a function.
printAge(num age){
print('Mycc age is $age.');// Print to the console.}// This is where the app starts executing.
main(){var age = 28;// Declare and initialize a variable.printAge(age);// Call a function.}