Difference between revisions of "WL Cluster Computing"

From WLCS
Line 1: Line 1:
hello world
 
 
 
<source lang="cpp">
 
<source lang="cpp">
int main()
+
#include "stdio.h"
 +
void main()
 
{
 
{
  return 0;
+
    puts("Hello World\n");
 +
    system("pause");
 
}
 
}
</source>
 
 
<source lang="cpp">
 
int main() {  return 0; }
 
</source>
 

Revision as of 00:26, 7 November 2008

<source lang="cpp">

  1. include "stdio.h"

void main() {

   puts("Hello World\n");
   system("pause");

}