The preface
int partOne(){ return 2; }
Some other stuff ...
int main(){ assert(partOne()==2); return 0; }
It's done.