DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

DART Reference: Functions

Quick reference for Functions.

Read time: 1 min Words: 14
My Progress

DART Reference — Functions

Quick summary of Functions with syntax and example.

Syntax

void main(){}

Example

void main(){
  print("Hello Dart");
}