Delete File
AUTHOR
stmuk
You want to delete a file
#!/usr/bin/env raku
use v6;
# create a file
my $f = open "foo", :w;
$f.print(time);
$f.close;
unlink "foo";
# vim: expandtab shiftwidth=4 ft=perl6
stmuk
You want to delete a file
#!/usr/bin/env raku
use v6;
# create a file
my $f = open "foo", :w;
$f.print(time);
$f.close;
unlink "foo";
# vim: expandtab shiftwidth=4 ft=perl6
Resoures
Learning
The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.