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.

28 lines
815 B

# Intro
### Instructions
Dart is a programming language designed for client development, such as for the web and mobile apps. It is developed by Google and can also be used to build server and desktop applications. Dart is an object-oriented, class-based, garbage-collected language with C-style syntax.
Dart (within Flutter framework) is used to develop cross platform applications for Android, iOS, Linux, macOS, Windows, Google Fuchsia, and the web from a single codebase.
Let's start with standard programming language tradition, write your first `"Hello, world!"` in Dart.
Create a file named `intro.dart` with the following content and run it!
### Expected function
```dart
void main() {
print("Hello, world!");
}
```
### Usage
To run the program, execute a command:
```console
dart intro.dart
```