File: tpl_cpp.cpp

package info (click to toggle)
tea 63.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,400 kB
  • sloc: cpp: 26,688; ansic: 9,471; xml: 420; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 129 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using namespace std;

int main (int argc, char *argv[])
{
  cout << "hello world" << endl;
  
  return 0;
}