I constructed two locals, for instance, department and major , to show one's information:
Code:
local department ""School of Economics" "Quantitive Economics"" 
local major ""Macroeconomics" "Monetary Policy""
With the combination of these two locals, a nested local, info, was established:
Code:
local info "`department' `major'"
I want to save the data in memory using the information contained in local info as file name, so I wrote:
Code:
save "`info'"
But it did not work. What's wrong with my code? Thanks