Dart – naredba FOR

Ispisati brojeve od 0 do 9.

void main() {
  for (var i = 0; i < 10; i++) {
    print('Broj $i');
  }
}