Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <functional>
- #include <vector>
- #include <ctime>
- using namespace std;
- template<typename Type>
- int pyro ( Type );
- int etho ();
- int randy ( int, int );
- int randy ( int max, int min = 0 ) {
- srand(time(NULL));
- return rand() % (max + min);
- }
- template<typename Type>
- int pyro ( Type dildo ) {
- vector<string> s = {"siiick", "last round last round", "not the twilight!", "game theory!"};
- dildo(s);
- return 0;
- }
- int etho () {
- pyro<function<void(vector<string>)>>(
- [](vector<string> ar) {
- cout << "\"" << ar[randy(ar.size())] << "\" " << "Pyropuncher said as Etho rammed the pink dildo up Pyro's anus";
- }
- );
- return 0;
- }
- int main () {
- etho();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement