Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 312 Bytes

hello.md

File metadata and controls

4 lines (4 loc) · 312 Bytes
  • void is the return type of the main 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.