You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
398 B

// A
std::string getText()
{
return "Hello World";
}
int main(int argc, char *argv[])
{
std::cout << getText() << std::endl;
return 0;
}
// This is Hello World with a function call and
// form feed characters in it for emacs page-break-lines extension
// which draws a horizontal line for each FF char it finds.
//
// this file contains two single h. lines and two consecutive h. lines