File: hello%2B%2B.cc

package info (click to toggle)
build-essential 2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 104 kB
  • ctags: 58
  • sloc: haskell: 89; makefile: 79; sh: 24; ansic: 6; cpp: 6
file content (7 lines) | stat: -rw-r--r-- 96 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
#include <iostream>

int main()
{
    std::cout << "Hello World!" << std::endl;
    return 0;
}