You are viewing the version of this documentation from Perl blead. This is the main development branch of Perl. (git commit eb643accd85e5ca0680df2bb7affcca35860e9ff)
$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.