
Quickstart
Write Dart Code
Using Librairies
Using Tools
AngularDart + Demo
Appeared in 2011 / Current Release 1.5.3
V8 engineers are working on the Dart project
Object-Oriented language ( Classes , Inheritance ...)
Supports types, without requiring them.
Supports code sharing ( Pub ... )
is Open Source https://code.google.com/p/dart/

// 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. }