mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:08:10 +00:00
13 lines
257 B
C++
13 lines
257 B
C++
#include <LibC/stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
(void) argc;
|
|
(void) argv;
|
|
printf("Counting to 100000: \033[s");
|
|
for (unsigned i = 0; i <= 100000; ++i) {
|
|
printf("\033[u\033[s%u", i);
|
|
}
|
|
printf("\n");
|
|
return 0;
|
|
}
|