Lightweight header-only library that makes console programming in C++ easier and cleaner.
It provides simple functions for common console tasks like printing text, helping beginners write readable code with less boilerplate.
#include "TeaLib.h"
#include "TeaLib.h"
using namespace TeaLib;
int main()
{
print("Welcome to TeaLib, ");
printLn("Hello, World!");
}
Welcome to TeaLib, Hello, World!
TeaLib ├── TeaLib/ │ └── TeaLib.h │ └── examples/
Contributions are welcome!
You can help by: