I am trying to write the following code so that it might return Hello, World!
.
using std::string;
using namespace std;
std::string hello()
{
return "Hello, World!";
}
int main()
{
hello();
return 0;
}
having the code compiler run with 0 errors, nor Waring, and run, then a bank result as shown in the attached pic. Thus can anybody figure out what's missing such that it returns the desired result!