blob: a882e9ac2d1ebb2ea4bdabee4222a2ffa0d6da4a [file] [log] [blame]
// Copyright (c) 2018, 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.
void main(List<String> args) {
final isTraining = args.contains("--train");
print(isTraining ? 'OK(Trained)' : 'OK(Run)');
}