# NAME Acme::SuddenlyDeath - ASCII Art of sudden death (çªç„¶ã®æ») generator # SYNOPSIS use Acme::SuddenlyDeath; print sudden_death('çªç„¶ã®æ»')."\n" # outputs => # _人人人人人_ # > çªç„¶ã®æ» < # ï¿£^Y^Y^Y^Y^ï¿£ print sudden_death("çªç„¶ã®\næ»")."\n" # outputs => # _人人人人_ # > çªç„¶ã® < # > æ» ï¼œ # ï¿£^Y^Y^Y^ï¿£ print sudden_death_single('çªç„¶ã®æ»')."\n" # outputs => # _人人人人人_> çªç„¶ã®æ» < ̄^Y^Y^Y^Y^ï¿£ # DESCRIPTION Acme::SuddenlyDeath generate the ASCII Art of sudden death from any strings. If you would like to know about sudden death, please refer to the following web site (Japanese Web Site). [http://dic.nicovideo.jp/a/%E7%AA%81%E7%84%B6%E3%81%AE%E6%AD%BB](http://dic.nicovideo.jp/a/%E7%AA%81%E7%84%B6%E3%81%AE%E6%AD%BB) # METHODS - sudden\_death This method needs a string as parameter. It returns multiple line ASCII art of 'sudden death' which was generated from string. - sudden\_death\_single This method needs a string as parameter. It returns one line ASCII art of 'sudden death' which was generated from string. - suddenly\_death - suddenly\_death\_single These methods are similar to the sudden\_death and sudden\_death\_single. However, this method decodes the parameter using Encode::decode\_utf8 and encodes the output using Encode::encode\_utf8. # AUTHOR papix <mail@papix.net> # DEPENDENCIES Text::VisualWidth 0.02 or later. # LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.