No Dart for Chrome :(
Some time ago I for the first time faced Dart and it fascinated me.
- optionally strongly typed, because Dart can infer types;
- top-level functions and variables support;
- generic-types;
- lexical closures (available for class declarations as well);
- implicit interfaces;
- out of the box Future and Streams;
- StringBuffer for efficient creation of long strings dynamically;
- class mixins using with statement;
- entry point in the main function;
We have decided not to integrate the Dart VM into Chrome.
Source: https://news.dartlang.org/2015/03/dart-for-entire-web.html
Comments
Post a Comment