The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Sweet::Cookbook

Create a temporary dir

    use File::Temp qw(tempdir);
    use Sweet::Dir;

    my $temp_dir = Sweet::Dir->new( path => tempdir() );
    $temp_dir->create;