Dart

This note is focused on the dart language basics

  • in dart every app required the top level main() function.
void main() {
print("hey samith")
}

Variables