Our First Program in C++

// my first program in C++
#include <'iostream>
using namespace std;
int main ()
{
cout << "Halo Dunia!"; return 0; }
After running, we can get result "Halo Dunia". See the difference between Turbo C++, we used printf or scanf but in this Program we just write about cout as printf statement. Have try it ^-^.Note : Oh yup, you mustn't write ' sign before iostream OK!, I just write it to make appear in Javascript of my writing :).