blob: 678ac79cf0019575800b5114c4351361c6c2d7c1 [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.
*/
library spawnUri_A01_t01_isolate;
import "dart:isolate";
import "../../../Utils/expect.dart";
void main(List args, SendPort replyPort) {
replyPort.send(args[0]);
}