Penguin

Differences between version 17 and revision by previous author of HelloWorld.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 17 Last edited on Saturday, May 8, 2004 9:12:09 am by BartvanDeventer Revert
Older page: version 16 Last edited on Saturday, May 8, 2004 1:01:26 am by DrewBroadley Revert
@@ -14,10 +14,11 @@
 
  
 [C++] 
  #include <iostream> 
- void main(){  
- std::cout << "Hello World" << endl; 
+ int main (int argc, char *argv[] ) {  
+ std::cout << "Hello World" << std:: endl;  
+ return
 
  
 [COBOL]