In[1] Goto["place2"]; Label["place1"]; Return[10]; Label["place2"]; Return[20];
Out[1] Return[20]
In[2] f[x_] := (Goto[x]; Label["place1"]; Return[10]; Label["place2"]; Return[20];)
In[3] f["place2"]
Out[3] 20
Q1) Can you tell me why Out[1] is Return[20], not 20 ?
Q2) How to modify In[1] as slightly as possible, so that Out[1] becomes 20 ?