blob: b321be066e400ca40132fbe59bae093c07792af9 [file] [log] [blame]
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import "bigger_cyclic_helper_1.dart";
export "bigger_cyclic_helper_1.dart";
void main() {
get1(1);
}
void get1(int i) {
print("1: $i");
if (i > 0) {
get1(i - 1);
get2(i - 1);
get3(i - 1);
get4(i - 1);
get5(i - 1);
get6(i - 1);
}
}