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.
 
 
 
 
 
 

19 lines
354 B

#!/usr/bin/perl
BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
use seed;
use toychain qw(unlinkedBlock);
use YAML::Syck qw(Dump);
my $seed = &seed::setseed('beautiful toy chain');
my $bkcontent = { key1 => 'value1', key2 => 'value2' };
my $blk = &unlinkedBlock($bkcontent);
printf "--- # blk %s...\n",Dump($blk);
exit $?;
1;