Hello World
on Sunday, 12th of July, 2020
Like all good programming tutorials, let's start by printing "Hello, World" to the console. In the next few lessons, we'll look at the individual components of this code sample.
void main() {
print('Hello, World!');
}Output:
Hello, World!I recommend running this example in Dartpad.
- previous: The main function
- next: Dartpad