diff options
Diffstat (limited to 'dev-template/dj')
-rw-r--r-- | dev-template/dj/hello.c | 8 | ||||
-rw-r--r-- | dev-template/dj/hello.cc | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/dev-template/dj/hello.c b/dev-template/dj/hello.c new file mode 100644 index 0000000..a2a90a5 --- /dev/null +++ b/dev-template/dj/hello.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int +main() +{ + printf("Hello, hard world!\n"); + return 0; +} diff --git a/dev-template/dj/hello.cc b/dev-template/dj/hello.cc new file mode 100644 index 0000000..c3aaa22 --- /dev/null +++ b/dev-template/dj/hello.cc @@ -0,0 +1,9 @@ +#include <iostream> + +using namespace std; + +int main(void) +{ + cout << "hello" << endl; + return 0; +} |