blob: c8abe4e438955fe07393a4b2d822dc6d11b1ed7d [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]);
}