hello
void
is the return type of themain
function, which is the starting point of any Dart program.The curly braces
{}
represent the beginning and end of a block of code.print("Hello, world!")
prints the "Hello, world!" text on the console window.Each code statement must end with a semicolon.
Last updated