What is Google Dart Language

In this article, we will go to explain about Google Dart language.
  • 1939

Introduction of Dart language

Dart is a new class based programming language for creating structured web application and it is a open source Web programming language developed  by Google in October 2011. Dart is class based, single inheritance, object-oriented language with C-style syntax. Dart language is a very light weight and based on RCP.

Dart run in two mode

  • Production mode
    No dynamic type a assertion.
    No default mode.
     
  • Checked mode
    Dynamic type assertion turned on.
    Assert element turned on.

 If you want to run your Dart program, then install Dart Editor or use online Dart Editor

Your First Dart Program

void main()
{
  print('Welcome in Dart !');
}

Output

Clipboard02.jpg


Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.