|
Acme::Takahashi::Method - turns your script into slides accordingly to the Takahashi Method |
Acme::Takahashi::Method - turns your script into slides accordingly to the Takahashi Method
use Acme::Takahashi::Method; # and the rest of your codes.
The Takahashi Method http://www.rubycolor.org/takahashi/ is a strong, powerful and impressive method that makes your presentation something unforgettable. This module makes your script as impressive as those presentations.
Seeing is believing. try
cp eg/fact.pl perl -Ilib fact.pl 10
and see what I mean.
This module supports directives below. You can set as many directives as you like as follows;
use Acme::Takahashi::Method columns => 132, rows => 50, noxec => 1;
use Acme::Takahashi::Method columns => 132;
or something.
use Acme::Takahashi::Method columns => 50;
or something.
use Acme::Takahashi::Method noslideshow => 1;
use Acme::Takahashi::Method noclobber => 1;
You still get nice slides.
use Acme::Takahashi::Method noexec => 1;
Are you kidding ?
goto. Here is an example.
loop: $result *= $n--; goto loop unless $n <= 1;
{ and } are boring as hell.
If you need braces make it fit into one line.
do { stuff } while(cond); # ok
do {
stuff;
}
while(cond); # perfectly NG
The Takahashi Method (Japanese) http://www.rubycolor.org/takahashi/
Dan Kogai, <dankogai@dan.co.jp>
Copyright (C) 2005 by Dan Kogai
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.
To be honest with you, I am too ashamed to insist copyright on this kind of stuff :)
|
Acme::Takahashi::Method - turns your script into slides accordingly to the Takahashi Method |