Wednesday, June 29, 2011

Hello World

//**************************************************************************
//
// Copyright (c) Wameland
//
//
// This software is distributed WITHOUT ANY WARRANTY. No claims are made
// as to its functionality or purpose.

// $Revision: 1.2 $
// $Name: E2 $
//
//**************************************************************************

// Program 2.1: Display greetings
// Authors: James P. Cohoon and Jack W. Davidson
// Date: 1/25/1996
#include <iostream>
#include <string>

using namespace std;

int main() {

    cout << "Hello world!" << endl;
    return 0;
}

No comments:

Post a Comment