File: 018_testcxx.cc

package info (click to toggle)
cowdancer 0.47
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 696 kB
  • ctags: 179
  • sloc: ansic: 2,634; sh: 407; makefile: 116; cpp: 6; python: 4
file content (9 lines) | stat: -rwxr-xr-x 128 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
/*BINFMTCXX: 
 */
#include <fstream>

int main(int argc, char** argv)
{
  std::ofstream ofs("1/a");
  ofs << "Hello world\n";
}