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