You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
FrenchFriesForBallerina 7e2c88632b corrected a typo in README.md 3 months ago
..
README.md corrected a typo in README.md 3 months ago

README.md

intro

Dart is an object-oriented, class-based, garbage-collected language. Dart is primarily used for client development, like web and mobile apps. It can also be used to build server and desktop applications.

Dart is the programming language of the Flutter framework. Flutter is used to develop cross-platform applications for Android, iOS, web and desktop from a single codebase.

Instructions

Let's start with the standard tradition for learning a new programming language; your first "Hello, world!" with dart.

Create a main function which prints "Hello, world!", followed by a new-line character.

void main() {
	print("");
}

Usage

To run the program, execute a command:

$ dart intro.dart
Hello, world!