19c228115a
Change-Id: I0e840f9e6489268d64b458872f19d0a2964f1271 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/100244 Commit-Queue: Clement Skau <cskau@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
11 lines
356 B
Dart
Executable File
11 lines
356 B
Dart
Executable File
#!/usr/bin/env dart
|
|
// Copyright (c) 2019, 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.
|
|
|
|
// Test program for Dart AOT (dart2aot, dartaotruntime).
|
|
|
|
main(List<String> args) async {
|
|
print('Hello, 世界.');
|
|
}
|