blob: 0ac0dda902674b53311aa566215bd37377cfceda [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!"); // Set break point at this line.
std::cout << hello_world << std::endl;
}