Skip to content

Instantly share code, notes, and snippets.

@isleofmax
isleofmax / gist:772fea4af9d33ef66354
Created January 1, 2015 23:10
deprecated code in BSON testing files
C:\ModuliPerl6\File-Find\lib\File>panda install BSON
==> Fetching BSON
==> Building BSON
Compiling lib\BSON\ObjectId.pm to mbc
Compiling lib\BSON.pm to mbc
==> Testing BSON
Saw 1 call to deprecated code during execution.
================================================================================
%samples = itemized hash called at:
use v6;
use File::Find;
my $dir = 'C:\Users\massimo\Videos';
my @files := find(dir => $dir);
for @files -> $file {
next if ($file ~~ :d);
print_video_file($file.Str);