# 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 ```