Writing Your First Program In Dart programming Language .

Table of contents

INTRODUCTION TO DART

Dart is an object oriented programming language. It was created by Google in 2011 and released in 2013 with the goal of replacing javascript as the language of the web. Dart is a flexible, robust, modern, and advanced language. It is easy to learn hence supports varied range of features like classes, collections, interfaces and generic. The language itself feels like a modern combination of all the best features from major languages plus a few of its own.

Write Your First Dart Program

void main() {
  print('this is my first program');
}

Run the code above in your editor. Yay you have written your first dart program.