mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-25 09:45:25 -07:00
9 lines
99 B
C++
9 lines
99 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
main()
|
|
{
|
|
cout << "Hello, World!" << endl;
|
|
return 0;
|
|
}
|