CS153/hw6/oatprograms/run56.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
160 B
Text

int f(int x1,int x2,int x3,int x4,int x5,int x6,int x7,int x8) {
return x1+x2+x4;
}
int program (int argc, string[] argv) {
return f(1,2,3,4,5,-5,-4,-3);
}