I know that the original LaTeX verse environment is based on general LaTeX lists. In particular, the verse environment is defined as follows by the article class:
{\newenvironment{verse}
{\let\\\@centercr
\list{}{\itemsep \z@
\itemindent -1.5em%
\listparindent\itemindent
\rightmargin \leftmargin
\advance\leftmargin 1.5em}%
\item\relax}
{\endlist}
I would like to know what is the default separation between stanzas in this verse environment. It appears to be \z@, but I don't know what that means. Or, is it \z@ + \parsep?
Here is how I use the verse environment, just in case it helps:
\documentclass[12pt,draft]{article}
\begin{document}
\begin{verse}
Thinking thought convolutes the brain \\
Because tomorrow comes too soon \\
When the squirrel sings doctor.
But maybe there be hope \\
In the middle of nowhere \\
When the sandman comes a-calling.
\end{verse}
\end{document}

\z@do? – Werner Sep 03 '16 at 18:00