Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 568 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 568 Bytes

Dart 2021

Dart is a platform-independent language and supports all operating systems such as Windows, Mac, Linux It is an open-source language, which means it available free for everyone. It comes with a BSD license and recognized by the ECMA standard

Dart provides an online editor which is known as DartPad available at https://dartpad.dartlang.org/

Basic Example of Using Dart

// print Hello World
void main() { 
   print("Hello World!"); 
}

Execute a Dart Program via the terminal

dart file_name.dart