6 lines
98 B
Text
6 lines
98 B
Text
global b=true;
|
|
int program (int argc, string[] argv) {
|
|
var i=0;
|
|
if (b) { i=1; }
|
|
return i;
|
|
}
|