Just in case anyone else runs into the same problem.
From: Marko Schuetz
It's not my environment...
I narrowed it down to this
\starttext
\setuptyping[option=commands] \starttyping cout << "Test!"; \stoptyping
\stoptext
This does not work here. TeX stops at a *-prompt.
This works: \starttext \def\cout{<<} \setuptyping[option=commands] \starttyping cout /cout "Test"; \stoptyping \stoptext and so does this: \starttext \starttyping cout << "Test"; \stoptyping \stoptext and also this: (where reserve.cpp contains <<) \starttext \setuptyping[option=commands] \typefile{reserve.cpp} \stoptext but this does not work: \starttext \setuptyping[option=commands] \starttyping cout << "Test"; \stoptyping \stoptext Marko