I try to use \forLoop for a countdown sequence:
\documentclass{minimal}
\usepackage{forloop}
\usepackage{fmtcount}
\begin{document}
\newcounter{idx}
\forLoop[-1]{10}{1}{idx}{\numberstring{idx}\\}
\end{document}
But this simply does not do anything. If the step is positive, everything is fine. I looked up the documentation for forloop and in the implementation \addtocounter was used to increment/decrement the counter. \addtocounter accepts negative values and effectively adds them to a specified counter.
So my question is: what am I doing wrong here?