DEV Community

Awaisoop
Awaisoop

Posted on

dart Basic Syntax;

void main () { // main block starts from there

int a;                  // initialize Variable
a = 10;
Enter fullscreen mode Exit fullscreen mode

print(a); // print statement

} // end program

Top comments (0)