I am new at LaTeX. My question is why this code doesn't work.
\documentclass[a4paper,12pt]{article}
\usepackage{fullpage}
\newcounter{const}
\renewcommand{\theconst}{\roman{const}}
\renewcommand{\item}{\stepcounter{const} (\theconst)}
\newcommand{\myitem}{\item}
\newenvironment{myenumerate}
{ \begin{itemize} }
{ \end{itemize} }
\begin{document}
\begin{myenumerate}
\myitem A
\myitem B
\myitem C
\end{myenumerate}
\end{document}

\itemare you sure you want to redefine that? this is used in the following environments none of which would work now, enumerate, itemize, description, verbatim, center, quote, ... – David Carlisle Jun 06 '17 at 06:59