TeaLib

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.

Features

Installation

  1. Download the file TeaLib.h
  2. Put it inside your project folder
  3. Include it in your C++ file
#include "TeaLib.h"

Basic Example

#include "TeaLib.h"

using namespace TeaLib;

int main()
{
    print("Welcome to TeaLib, ");
    printLn("Hello, World!");
}

Output

Welcome to TeaLib, Hello, World!

Requirements

Project Structure

TeaLib

├── TeaLib/
│   └── TeaLib.h
│
└── examples/

Contributing

Contributions are welcome!

You can help by:

last Updated for TeaLib V0.1.6