fix casting arguments to parameter type

This commit is contained in:
pommicket 2022-02-12 23:44:48 -05:00
parent 29a92afcf2
commit 8c82a83778
2 changed files with 6 additions and 1 deletions

View file

@ -12,6 +12,7 @@ long fibonacci(long x) {
}
int main(int argc, char **argv) {
return 1 || -0.1;
double x = 3.5;
return factorial(x);
}