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