Dart

Dart is a programming language designed by Lars Bak and Kasper Lund and developed by Google. It can be used to develop web and mobile apps as well as server and desktop applications.
It's the basic programming language for the Flutter framework—explained in further detail below—and is used to build scalable mobile applications
- Official website
- https://dart.dev/
- Documentation
- https://dart.dev/guides
- Online IDE
- https://dartpad.dev/
- Learn
- https://dart.dev/language
// starter code
void main() {
for (int i = 0; i < 10; i++) {
print('hello ${i + 1}');
}
}