CS153/hw6/oatprograms/run23.oat
jmug cfe502c598 Add all the assignment code.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-01-24 18:59:28 -08:00

6 lines
197 B
Text

int program (int argc, string[] argv) {
var strs = new string[][]{new string[]{"abc", "def"},
new string[]{"789", "123"}};
print_string (strs[1][1]);
return 0;
}