Page 10 - Dart Language
P. 10
Version Release Date
1.2.0 2014-02-25
1.1.3 2014-02-06
1.1.1 2014-01-15
1.0.0.10_r30798 2013-12-02
1.0.0.3_r30188 2013-11-12
0.8.10.10_r30107 2013-11-08
0.8.10.6_r30036 2013-11-07
0.8.10.3_r29803 2013-11-04
Examples
Installation or Setup
The Dart SDK includes everything you need to write and run Dart code: VM, libraries, analyzer,
package manager, doc generator, formatter, debugger, and more. If you are doing web
development, you will also need Dartium.
Automated installation and updates
• Installing Dart on Windows
• Installing Dart on Mac
• Installing Dart on Linux
Manual install
You can also manually install any version of the SDK.
Hello, World!
Create a new file named hello_world.dart with the following content:
void main() {
print('Hello, World!');
}
In the terminal, navigate to the directory containing the file hello_world.dart and type the following:
dart hello_world.dart
https://riptutorial.com/ 5

