The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# Copyright (c) 2023 Yuki Kimoto
# MIT License
class IO {
version "0.234";
use IO::File;
use IO::Dir;
static method open : IO::File ($open_mode : string, $file_name : string) {
return IO::File->new($file_name, $open_mode);
}
static method opendir : IO::Dir ($dir_path : string) {
return IO::Dir->new($dir_path);
}
}