CAP/MiniC/TP06/tests/provided/basic-functions/test_fun_ret01.c

11 lines
117 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
// Return statememnt with expression
int main(){
return 1 + 2;
}
// EXPECTED
// EXECCODE 3