parrotcode: Perl6 builtins for I/O | |
Contents | Language Implementations | Perl6 |
src/builtins/io.pir - Perl6 builtins for I/O
$cnt = unlink 'a', 'b', 'c';Be warned that unlinking a directory can inflict damage on your filesystem. Finally, using
unlink
on directories is not supported on many operating systems. Use rmdir
instead.It is an error to use bare unlink
without arguments.
|