CS153/hw5/hw5programs/tc_error_global_dup.oat

7 lines
82 B
Text
Raw Normal View History

global x = 3;
global x = 4;
int program(int argc, string[] argv) {
return x;
}