Re: really simple question
- To: mathgroup at smc.vnet.net
- Subject: [mg71117] Re: really simple question
- From: "Jens-Peer Kuska" <kuska at informatik.uni-leipzig.de>
- Date: Thu, 9 Nov 2006 03:37:12 -0500 (EST)
- Organization: Uni Leipzig
- References: <eimqm1$c0m$1@smc.vnet.net>
Hi, you are sure that you want this ?? Than try $inPrint = False; $PreRead = (If[Not[$inPrint] && Cases[#, {_, "=", _}, Infinity] =!= {}, Block[{$inPrint = True}, Print @@ ToExpression[RowBox /@ Cases[#, {_, "=", _}, Infinity], StandardForm, HoldForm]]]; #) & Regards Jens <xarnaudx at gmail.com> schrieb im Newsbeitrag news:eimqm1$c0m$1 at smc.vnet.net... | | when you type stuff in the input like: | In[1]: a = 3 | and execute it, the result is shown in the output: | Out[1]: 3 | | since i do many different computations, i wish i had as output: | Out[1]: a = 3 | | (and not only 3 without the "a ="!) | | | where can i set the option to see which result is affected to what | variable by default? |