This is a simple C++ console program that introduces myself in an animated style. The program prints lines of text character by character, creating a typewriter-like effect using std::this_thread::sleep_for. It demonstrates basic C++ concepts such as loops, vectors, and simple timing operations.
- Animated text output in the console
- Uses
vectorto store multiple lines of text - Introduces basic threading for delay effects
- Perfect for beginners learning C++ I/O and loops
- Clone this repository:
git clone https://github.com/g3raldatsc/intro-cpp.git- Navigate to the project directory:
cd intro-cpp- Compile the program using g++ (or any C++ compiler):
g++ -o introduction main.cpp -std=c++11- Run the program:
./introductionWhen you run the program, it will print an introduction line by line, with each character appearing slowly for a typewriter effect. Example output:
This project is licensed under the MIT License. Feel free to use and modify it!