#include "library.h" void tests(const double n, const int times) { print(times); print(": "); print(n); new_line(); if (times < 500) tests(n / 10.0, times + 1); } void main() { tests(1.0, 0); }