Note
I write code with love, grow through practice, and turn ideas into working solutions.
Enthusiastic developer focused on building stable, aesthetic, and simple products.
My goal is to ensure security, stability, and transparency.
#include <iostream>
#include <thread>
#include <chrono>
#include <string>
using namespace std;
using namespace std::chrono;
void sleep_ms(int ms) {
this_thread::sleep_for(milliseconds(ms));
}
void typewriter(const string& text, int delay = 25) {
for (char c : text) {
cout << c << flush;
sleep_ms(delay);
}
cout << '\n';
}
int main() {
cout << "\033[1;33m";
typewriter("Philosophy", 30);
cout << "\n";
string quote = "“Simplicity is the soul of efficiency.”";
string author = "- Austin Freeman";
typewriter(quote, 35);
sleep_ms(500);
typewriter(author, 40);
cout << "\033[0m";
return 0;
}



