Hello World

From CryWiki

Jump to: navigation, search


C++ Sample Walkthrough

Just make a file main.cpp and paste the following code in to it:


C++ (main.cpp)
#include <iostream>
 
int main(void)
{
   std::cout << "Hello World!" << std::endl;
   return 0;
}


   

About this Sample

Name

Hello World

Created by

Vloktboky

Description

Simple Hello World C++ sample!

» Discuss this sample...

» View other C++ Samples

» Return to Crysis Modding Code Samples

Personal tools