In the MWE, after the arrow the line is empty and the text starts in a new line. Can I achieve that the text starts after the arrow? Neither ~ nor \nolinebreak do not work. The arrow should be where it is in the MWE.
\documentclass{article}
\usepackage{blindtext}
\usepackage{changepage}
\newenvironment{myenvironment}
{\noindent$\rightarrow$\begin{adjustwidth}{3em}{0em}}
{\end{adjustwidth}}
\begin{document}
\noindent Hello.
\begin{myenvironment}
\blindtext
\end{myenvironment}
\end{document}
