Provoke changes
This commit is contained in:
+4
-3
@@ -1,10 +1,11 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
int add_3(int cx) {
|
// Add six
|
||||||
return 2 + cx;
|
int add_6(int cx) {
|
||||||
|
return 3 + cx;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
std::cout << "Hello, world!" << add_3(5) << std::endl;
|
std::cout << "Hello, world!" << add_6(5) << std::endl;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user