File: hello.h

package info (click to toggle)
aspectc%2B%2B 1%3A1.1%2Bsvn20120529-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 222,560 kB
  • sloc: cpp: 3,935,531; ansic: 18,166; pascal: 14,783; sh: 2,188; makefile: 1,110; python: 340
file content (10 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
#ifndef __HELLO_H__
#define __HELLO_H__

#include <iostream>

void hello(){
  std::cout << "Hello" << std::endl;
}

#endif