Your first Dart program

Haider Ali
Complete Flutter Guide
Apr 7, 2024

Lesson#4

Open VS Code and add a new file first.dart. Write the following code:

void main() {
print("Hello World!");
}

This code when executed will print “Hello World!” on the screen.

Hello World!

--

--