//===-- 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 #include 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; }