Mylloon
828a780f9c
* Add basic support of function * move debug function to test file * add a test who need to pass to end the implementation
8 lines
125 B
Text
8 lines
125 B
Text
int cops_calculator () {
|
|
int res = 13 * 100 + 20 - 8;
|
|
return res * 2 / 2;
|
|
}
|
|
|
|
void main () {
|
|
cops_calculator();
|
|
}
|