A quick introduction to Dart Programming Language.

Yogita Kumar
2 min readDec 29, 2020

--

Dart is an open-source general-purpose programming language developed by Google. Dart is an object-oriented language with C-style syntax.

Main target of Dart is to develop flutter applications. As Dart is object-oriented programming language it supports interfaces, classes, collections, generics etc.

You can execute dart program by using online editor at https://dartpad.dartlang.org/

DartPad Screenshot

Here is our first Hello World! Dart program

void main() {
print(“Hello World!”);
}

Above code displays following output

Hello World!

here, main() function is the entry point for program.

print() function helps to print output on standard output(on screen).

you may refer below article, in case want to learn more about Dart:

Dart Programming - Variables

Dart Programming — Learning Operators

Dart Programming — Learning Loops

Decision Making Statements in Dart

Thank you!

--

--

Yogita Kumar

Google Developer Expert Flutter| Cloud Enthusiast | Full Stack Developer | .NET Developer |Coach and Trainer