Variables in Dart
You,•dart + flutter
variables in Dart
void main() {
//an integer
int i =7;
print(i);
double d = 3.14159;
print(d);
String s ="wonderful world !";
print(s);
var n = null;
print(n);
}
Console Output:
7
3.14159
wonderful world !
null
Arrays or Lists
Console Output:
Console Output: