Table of Contents

Programming Language

Dart

Dart (programminglanguage)
Full NameDart
Short NameDart
DescriptionObject-oriented, class-based, garbage-collected language with C-style syntax
CompanyGoogle
WebYes
MobileYes
EnterpriseYes
EmbeddedNo
Snippet from Wikipedia: Dart (programming language)

Dart is a programming language designed by Lars Bak and Kasper Lund and developed by Google. It can be used to develop web and mobile apps as well as server and desktop applications.

Dart is an object-oriented, class-based, garbage-collected language with C-style syntax. It can compile to machine code, JavaScript, or WebAssembly. It supports interfaces, mixins, abstract classes, reified generics and type inference.

GitHub Topics

Dart is a general-purpose programming language originally developed by Google and later approved as a standard by Ecma (ECMA-408). It is used to build web, server, and mobile applications.

Dart is an object-oriented, class defined language using a C-style syntax that transcompiles optionally into JavaScript. It supports interfaces, mixins, abstract classes, reified generics, static typing, and a sound type system.

Hello World

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

See also: Programming Languages