blob: 3fc5e9d0b7429b9dd177ee403f73d13c5fd555c0 [file] [log] [blame]
// Copyright (c) 2011, 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.
/// * @author kaigorodov
library spawnUri_A01_t01_isolate;
import "dart:isolate";
void main(List args, SendPort? replyPort) {
replyPort?.send(args[0]);
}