================
@@ -0,0 +1,3 @@
+#include <iostream>
+
+int main() { std::cout << "Hello World!" << std::endl; }
----------------
clayborg wrote:

No need to use <iostream> here right? I would just do a simpler `main`:
```
int main() {
  return 0;
}
```
(remove `#include` and use of `std::cout`). This will reduce the size and speed 
up compilation.

https://github.com/llvm/llvm-project/pull/92014
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to