Hello. I started the C++ track yesterday and the first code exercise gave me the following error after I changed the string within the hello world () function definition to “Hello world.” I am not sure what to make of this error message. The error is below:
FAILED:
REQUIRE( hello_world::hello() == “Hello, World!” )
with expansion:
“Hello, world!” == “Hello, World!”
at /tmp/hello-world/hello_world_test.cpp:14
It is checking if those are the same and complaining that they are not the same. You need to ensure they match exactly.
Thank you for the help.