This commit is contained in:
left_adjoint 2024-02-28 18:26:54 -08:00
parent 6b58d03e45
commit 87b4bcf4c9

View File

@ -1,7 +1,7 @@
#include <iostream>
using namespace std;
int sillyFun(int num){
int sillyFun(int &num){
num = num + 1;
return num;
}