You are viewing the version of this documentation from Perl blead. This is the main development branch of Perl. (git commit 46153a52604875758a865e8f03f357e359fc0f49)
$ACCUMULATOR
$^A

The current value of the write() accumulator for format() lines. A format contains formline() calls that put their result into $^A. After calling its format, write() prints out the contents of $^A and empties. So you never really see the contents of $^A unless you call formline() yourself and then look at it. See perlform and "formline PICTURE,LIST" in perlfunc.