#include <iostream>
using namespace std;
void randomVoid ()
{
string first_userAnswer;
cout << "hello, this is a random void! (function)"<<endl;
cout << "what is your favorite hobby?";
cin >> first_userAnswer;
if (first_userAnswer == "coding" || "programming")
{
cout << "cool!" << endl;
}
else
{
cout << "nice" << endl;
}
}
void congratulations ()
{
cout <<
"if you see this message, it might mean that you were able to solve this puzzle, congrats!";
}
int main() {
cout << "Hello world from the main function!" << endl;
int x = 15;
cout << x + 213 << endl;
congratulations();
randomVoid();
}