Menu
Coddy logo textTech

What is Dart?

Part of the Fundamentals section of Coddy's Dart journey — lesson 1 of 94.

Dart is a Google-developed language that powers Flutter for cross-platform app development. It combines object-orientation, flexible typing, and modern features like null safety.

A simple Dart program:

void main() {
  print('Hello, Dart!');
}

Dart is beginner-friendly yet powerful enough for professional development across web, mobile, and desktop platforms. test2

challenge icon

Challenge

Beginner

Press the run code button to run your first code in Dart

Cheat sheet

Dart is a Google-developed language that powers Flutter for cross-platform app development.

A simple Dart program structure:

void main() {
  print('Hello, Dart!');
}

Key features include object-orientation, flexible typing, and null safety.

Try it yourself

void main() {
    print('Hello Dart!');
}

All lessons in Fundamentals