For example, if I do this:
In[42]:= {{2}, {3}} // MatrixForm
where In[42]:= is the notebook prompt, I am looking for some way to get back {{2}, {3}} // MatrixForm. (Which I guess would be a string? Or some kind of unevaluated expression?)
The closest I can find is In[42] // InputForm, which in this case gives me MatrixForm[{{2}, {3}}].
Is this possible, or is the actual tree structure of an entered input not recoverable?


