blob: f294b0e750027d4fd7540beba3e6d2815a45bec7 [file] [log] [blame]
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <iostream>
#include <string>
int main (int argc, char const *argv[])
{
std::string hello_world ("Hello World!");
std::cout << hello_world << std::endl;
}