NOTE: The point is not to modify the enumerate environment. I need to convert it to the tabular like environment automatically.
I would like to format an enumerate environment of 4 items
\begin{enumerate}
\item Fist point
\item Second point
\item Third point
\item Fourth point
\end{enumerate}
like a tabular environment. The output should be similar to the output of
\begin{tabular}{@{}rr@{}}
a) Fist point & b) Second point \\
c) Third point & d) Fourth point \\
\end{tabular}
My first thought was to use inline lists, but this would not assure that items b) and d) are aligned.
I'm sorry for not having yet a MWE, but I am looking more for ideas to start playing with that a full answer. I will edit the question when I have something more concrete.

tabularwon't compile because it doesn't include the alignment specifiers on the first line. E.g.\begin{tabular}{ll}. – Jul 07 '15 at 07:40taskssolution, already mentioned by @Clemens, and a solution based on theshortlstpackage. – Bernard Jul 07 '15 at 08:21enumerateto behorizlist– touhami Jul 07 '15 at 09:47