Acme-HidamariSketch
view release on metacpan or search on metacpan
eg/apartment.pl view on Meta::CPAN
#!perl
use strict;
use warnings;
use utf8;
use File::Spec;
use File::Basename;
use lib File::Spec->catdir(dirname(__FILE__), '../lib');
binmode(STDOUT, ":utf8");
use Acme::HidamariSketch;
my $hidamari = Acme::HidamariSketch->new;
my $apartment = $hidamari->apartment;
# ãã¢ãããã¯ããªãã¨ã ãã£ããï¼
# $apartment->knock;
eg/characters.pl view on Meta::CPAN
#!perl
use strict;
use warnings;
use utf8;
use File::Spec;
use File::Basename;
use lib File::Spec->catdir(dirname(__FILE__), '../lib');
binmode(STDOUT, ":utf8");
use Acme::HidamariSketch;
my $hidamari = Acme::HidamariSketch->new;
my @characters = $hidamari->characters;
# ã¿ããªã®æ
å ±ãè¦ããæ¾é¡
foreach my $character (@characters) {
printf "-----------------------\n";
( run in 0.247 second using v1.01-cache-2.11-cpan-87723dcf8b7 )