Skip to content
Snippets Groups Projects
Select Git revision
  • e02c63ecd513a85b471daf99237cf69f4993566d
  • master default protected
  • v_230512
3 results

raw1.cc

Blame
  • raw1.cc 229 B
    #include <iostream>
    #include <string>
    
    int main()
    {
        std::cout << "Use a single backslash character at the end of the line to continue input to the next line, as shown ...\n"
                  << "OBJ=a.o \\\n\tb.o\\\n\tc.o\n";
    }