You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
8 lines
204 B
C++
8 lines
204 B
C++
|
|
// We need to import any std module. It doesn't matter which one.
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main(int argc, char **argv) {
|
||
|
|
std::cout << "Test" << std::endl;
|
||
|
|
return 0; // Set break point at this line.
|
||
|
|
}
|