blob: 6e35e6931c41fc8a723d7b39587ed5b867018d01 [file] [log] [blame]
#!mojo mojo:dart_content_handler
library test;
import 'dart:async';
import 'dart:mojo.internal';
part 'part0.dart';
main(List args) {
// Hang around for a sec and then close the shell handle.
new Timer(new Duration(milliseconds: 1000), () {
print('PASS');
MojoHandleNatives.close(args[0]);
});
}