blob: cca1f90cd7be8eb2481a00a89bbc7ba7edaa6d4f [file] [log] [blame]
// Copyright (c) 2015, 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.
// Script which exits with code 42.
import 'dart:io';
void main() {
exitCode = 42;
}