Dart
Dart Programming Language
a terse, strongly typed, object-oriented language.
Why Dart ?
- Performant in development and in production
- It supports both Just-in-time JIT and ahead-of-time AIT compilation
- JIT compilation, code is continuuously recompiled directly on the device, allowing hot reload.
- AIT compilation, the code your app uses is compiled directly to native ARM code, leading to fast startup and predictable performance. This s freat for release builds as the resulting native code starts quickly and hs predictable performance.
- Dart has static types and a sound type system which help you catch bugs at compile time and manage your code as it grows.
Comments
Post a Comment