mirror of https://github.com/01-edu/public.git
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.
davhojt
8f002fdd1e
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years 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; you're 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!