909c44cecf
Change-Id: If087dfaf291f02812aa1191328a10ad2a5f135ba Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183007 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
8 lines
272 B
Dart
8 lines
272 B
Dart
// Copyright (c) 2021, 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.
|
|
|
|
main() {
|
|
new List<int>.generate(10, (i) => i * 2);
|
|
}
|