blob: 5e6da0d4f1201b0e1ba517b497f7b0cc59581b85 [file] [log] [blame]
// Copyright (c) 2013, 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.
import "dart:io";
import "dart:async";
main() {
new Timer(new Duration(seconds: 2), () {
new Directory(new Options().arguments[0]).delete(recursive: true);
});
}