Archive for the ‘ouroboros’ tag
Ouroboros
struct serpent
{
public:
serpent* tail;
void swallow(serpent* s) { /* ... */ }
};
serpent* ouroboros = new serpent();
ouroboros->swallow(ouroboros->tail);
Into the depths of the fiery abyss
struct serpent
{
public:
serpent* tail;
void swallow(serpent* s) { /* ... */ }
};
serpent* ouroboros = new serpent();
ouroboros->swallow(ouroboros->tail);