53ba9af361
For now we use a static library, but I am planning to add support for a shared library in a follow-up CL. Tested: locally on macOS and Linux, also ci should at least build samples. Change-Id: I277239359de226c56633884f350b22a030759ab6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/392640 Commit-Queue: Ivan Inozemtsev <iinozemtsev@google.com> Reviewed-by: Slava Egorov <vegorov@google.com>
11 lines
375 B
Dart
11 lines
375 B
Dart
// Copyright (c) 2024, 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 'package:collection/collection.dart';
|
|
|
|
void main(List<String>? args) {
|
|
final greetee = args?.singleOrNull ?? 'world';
|
|
print('Hello, $greetee!');
|
|
}
|