Your First Dart Application
Consider the most straightforward program on Dart.
main.dart
123void main() { print('Hello, World!'); }
As you can see, this program prints the phrase Hello, world!.
-
Every program needs the
main()function, from which code execution begins. Thevoidis a type of function. We will talk about types of functions in the future; -
Dart code is written in the function's body, that is, in curly braces
{}. The space in the curly brackets{}is the function's body, in which we will write all the commands that will work in this function; -
Look at the semicolon
;. After each line of code, we put a semicolon. Otherwise, the development environment will report an error to us. Such line separation is necessary so that the dart interpreter knows where one instruction ends and where another begins.
Grazie per i tuoi commenti!
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Can you explain more about the `main()` function in Dart?
What other types of functions are there in Dart?
Why is the semicolon important in Dart syntax?
Fantastico!
Completion tasso migliorato a 4.55
Your First Dart Application
Scorri per mostrare il menu
Consider the most straightforward program on Dart.
main.dart
123void main() { print('Hello, World!'); }
As you can see, this program prints the phrase Hello, world!.
-
Every program needs the
main()function, from which code execution begins. Thevoidis a type of function. We will talk about types of functions in the future; -
Dart code is written in the function's body, that is, in curly braces
{}. The space in the curly brackets{}is the function's body, in which we will write all the commands that will work in this function; -
Look at the semicolon
;. After each line of code, we put a semicolon. Otherwise, the development environment will report an error to us. Such line separation is necessary so that the dart interpreter knows where one instruction ends and where another begins.
Grazie per i tuoi commenti!