Question: Showing a 2d list

I enter this at the command prompt >sss := [[1, 2], [2, 4], [3, 6], [4, 8], [5, 10]] Then I enter this at the command prompt >sss; and I get the output [[1, 2], [2, 4], [3, 6], [4, 8], [5, 10]] as expected. Then I enter this MakeData := proc () local i; global ggg; for i to 5 do ggg[i, 1] := i; ggg[i, 2] := 2*i end do end proc Then I run the proceedure MakeData and I test various values of ggg[i,j] to verify that ggg[i,j] = sss[i,j] But when I type ggg at the command prompt, the output just returns ggg, it doesn't give me the whole display, as it does when I type sss as the command prompt. Is there any way to get that output when just using ggg ?
Please Wait...