18 lines
219 B
Plaintext
18 lines
219 B
Plaintext
#include <iostream>
|
|
#include <string>
|
|
#include "colors.h"
|
|
|
|
#define N_TEST "1"
|
|
|
|
int main() {
|
|
int i = 0;
|
|
|
|
std::cout << B_YELLOW "\n[" << ++i << "/" N_TEST "] "
|
|
<< "tests :" RESET "\n";
|
|
{
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|