the right compiler

Pages: 1234
I leave for an hour and this is what happens?

If you're going to post silliness at least make it interesting silliness.
:l

SORRY.
it is interesting silliness, just not well coded :) we plan on destroying every lego mindstorm running custom firmware in the world by contributing to their sources >:D
{EDIT} Chris, we should make your KFOS except just make the command line in a C++ app. KFCMD! :P
Last edited on
Lol... maybe we can make it scream "I'M WATCHING GAY PORN!" every twenty minutes...
lol the custom firmware or the KFCMD? :P anyway, im bored. can't think of something to do in C++ :\
I'm writing the coca cola source code. Here's what I have so far:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Coca-Cola source code
/*
 * Copyright: Coca-Cola Corporation
 * Date: 1896
 *
 * Main.cpp - defines the entry point of the coca cola bottle.
 ****/

#include <stolen/pepsi_ingredients.h>

#include <water.h>
#include <sugar.h>
#include <colourants.h>
#include <phosphoric_acid.h>
#include <natural_flavourings.h>
#include <caffeine.h>

int main(int ingc, char* ingv[]) { // Ingredient count, ingredient vector
}


Or we could do the powerpuff girls source code:
1
2
3
4
#include <sugar.h>
#include <spice.h>
#include <everything_nice.h>
#include "X.hpp" 
Last edited on
haha seriously, how do you come up with this stuff? :P you've actually gotta finish one of these though. although, i just had an idea for a security-level authentication thing, but i need an idea for it to go with.
I think I'm insane.
good, use your insanity, and give me some ideas. :)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Coca-Cola source code
/*
 * Copyright: Coca-Cola Corporation
 * Date: 1896
 *
 * Main.cpp - defines the entry point of the coca cola bottle.
 ****/

#include <stolen/pepsi_ingredients.h>

#include <water.h>
#include <sugar.h>
#include <colourants.h>
#include <phosphoric_acid.h>
#include <natural_flavourings.h>
#include <caffeine.h>

class coke {
    public:
        friend pepsi;
        std::cokestream bottle;
        coke() {
            bottle.open(lid, drink::out, drink::backwash::in);
            if (drinker::curDrinker.has_finished_bottle()) {
                bottle.close();
            } else {
                exit(EXIT_SUCCESS);
            }
        }

        ~coke() {
            if (bottle.eof()) {
                drinker::cout << "Aahh";
                refresh();
            }
        }

        void addToMixture(...);
        void stealIngredients(company);
        void monopolize(market); // This function has not been written yet.
};

class pepsi {
    frenemy coke;
    public:
        bool taste_nice;
        pepsi() {
            taste_nice = false;
            tase_betterThanCoke = true;
            if (coke.stealIngredients(*pepsi_cola)) {
                taste_betterThanCoke = false;
                coke.taste_nice = true;
            }
        }
} *pepsi_cola;

void coke::stealIngredients(company toStealFrom) {
    pretendTo::mergeWith(toStealFrom);
    really::StealFrom(toStealFrom);
}

void coke::addToMixture(...) {
    va_list ingredient;
    mixture += ingredient;
}

int main(int ingc, char* ingv[]) { // Ingredient count, ingredient vector
    for (int i = 0; i < argc; ++i) {
        coke Ingredients;
        coke.addToMixture(ingv[i]);
    }
}
Last edited on
does that actually compile???
No.

I'd have to create stolen/pepsi_ingredients.h, water.h, sugar.h, colourants.h, phosphoric_acid.h, natural_flavourings.h and caffeine.h. Plus I referenced a bunch of variables and functions that I haven't even defined or declared...

I'm not making namespace cokestream either.


Also there's no keyword "frenemy".
Last edited on
lol do you plan on making those headers though? you should actually make it work, its funnier that way. :P
No way! That'd take ages!
not really. just define a single class in each header and that's it. it'd work and wouldn't take too long.
You do it then.
well all you've gotta do is... hey look, its a free Ferrari Enzo outside my house! -dives out window-
Lol, Ferrari's suck.

You want a British car. We used to own the whole world. Buy shit from us.

What are you talking about, recession? Take another ten years to recover? Shut up.
but then my driver's seat would be on the right side of my car. come to think of it, that'd be kinda cool in America. is that legal? o.o I don't see why it wouldn't be... but still.
I think so... you can the opposite here.

By the way
IT'S ILLOGICAL TO DRIVE ON THE RIGHT! STATISTICS SHOW THAT MOST PEOPLE WILL PULL TO THE LEFT WHEN THEY ARE IN TROUBLE (and if my actions in Grand Theft Auto are reliable indicators, it's true) AND IN AMERICA THEY WILL PULL INTO ONCOMING TRAFFIC, WHEREAS IN BRITAIN THEY WILL FALL OFF A CLIFF, THUS ONLY KILLING THEMSELVES.
Last edited on
Pages: 1234