metadeck
10/1/2018 - 10:05 AM

Dart Beginners - If and Else

Dart Beginners - If and Else

// Copyright 2015 the Dart project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.

void main() {
  for (int i = 0; i < 4; i++) {
    print('hello ${i}');
  }
  print("Yeoo");
}