blob: 81396abb285a1500d33728d3b0148ef09af7e3dc [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.
// @dart = 2.9
/// * @author kaigorodov
library spawnUri_A01_t01_isolate;
import "dart:isolate";
void main(List args, SendPort replyPort) {
replyPort.send(args[0]);
}