Hello,
How does CodeRunner handle save/load? Does it really save the files in
the sandbox during the evaluation of student's code and then remove the
files?
Student code is
a=5;
save data1.mat a
a=6;
load data1.mat
a
And the output is
a=5
save data1.mat a
a=6;
load data1.mat
a
And the output is
a=5