Your first Dart program
Published in
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.
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.