You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
223 B

#!/usr/bin/perl
BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
use YAML::Syck qw(Dump);
use DAG qw(DAGRead);
my $blk = &DAGRead('blocks','123');
printf "--- # blk %s...\n",Dump($blk);
exit $?;
1;