예제 #1
0
int main() {
    using namespace stable;
    using namespace beta;

    Numbers thenumbers;

    for (int j = 0; j < 100; j++)
    {
        thenumbers.add(j);
    }

    beta::dummyfunction(thenumbers);
    reverseprint(thenumbers);

    cout << "Hi!" << endl;

    return 0;
}