mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-28 19:25:25 -07:00
10 lines
110 B
C++
10 lines
110 B
C++
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
cout << "give me a bottle of rum!" << endl;
|
||
|
return 0;
|
||
|
}
|