8 lines
135 B
C
8 lines
135 B
C
|
#ifndef __HELLO_H
|
||
|
#define __HELLO_H
|
||
|
|
||
|
/** The Hello, World! message. */
|
||
|
#define HELLO_MESSAGE "Hello, World!\n"
|
||
|
|
||
|
#endif /* __HELLO_H */
|