#include #include void rotate() { int i = 0; char rotater[] = {'|', '|', '|', '|'}; while (i < 100) { std::cout << rotater[i % 4]; i++; } }