forked from OSchip/llvm-project
16 lines
545 B
C++
16 lines
545 B
C++
//===-- 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;
|
|
}
|