Difference between revisions of "WL Cluster Computing"
From WLCS
| Line 1: | Line 1: | ||
| − | |||
| − | |||
<source lang="cpp"> | <source lang="cpp"> | ||
| − | + | #include "stdio.h" | |
| + | void main() | ||
{ | { | ||
| − | + | puts("Hello World\n"); | |
| + | system("pause"); | ||
} | } | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 23:26, 6 November 2008
<source lang="cpp">
- include "stdio.h"
void main() {
puts("Hello World\n");
system("pause");
}