Dart
Client-optimized language for fast apps
Overview
Dart is Google's language for building mobile, desktop, and web applications. It's the language behind Flutter, Google's UI toolkit.
Language Aliases
Supported Aliases
run dart "void main() { print('Hello'); }"
run dartlang "void main() { print('Hello'); }"
run flutter "void main() { print('Hello'); }"
Output
Hello
Hello
Hello
REPL Behavior
Dart's REPL maintains state across commands. Variables, functions, and classes persist within the same REPL session.