NAME
Text::Homestuck - Emulate the typing quirks of Homestuck trolls
SYNOPSIS
use Text::Homestuck;
say feferi 'HELLO WORLD!'; # )(-ELLO WORLD!
my @array = ('Move along.', 'Nothing to see here');
aradia for @array;
say "@array"; # m0ve al0ng n0thing t0 see here
DESCRIPTION
Text::Homestuck exports several subroutines, one for each typing quirk. There are 12 such functions right now, one for each pre-scratch troll: aradia, tavros, sollux, karkat, nepeta, kanaya, terezi, vriska, equius, gamzee, eridan, feferi.
Each subroutine takes one or no arguments. If called with an argument, they apply the quirk to the argument and return the result. If called with no arguments, they apply the quirk to $_
, modifiying it in-place, and returning $_
.
SEE ALSO
Homestuck: http://mspaintadventures.com/?s=6&p=001901
A table of typing quirks: http://mspaintadventures.wikia.com/wiki/Typing_Quirk
AUTHOR
Marius Gavrilescu <marius@ieval.ro>
COPYRIGHT AND LICENSE
Copyright (C) 2014 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.18.2 or, at your option, any later version of Perl 5 you may have available.