Skip to content

TimGoTheCreator/CppSL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

CppSL: C++ Simplify Library

Language License Header-only

CppSL is a small, beginner-friendly, single-header C++ library that simplifies basic console input and output, with built-in validation for numeric input.

Example:

#include "cppsl.h"
using namespace csl;

int main() {
    std::string name;
    input("Enter your name: ", name);

    int age;
    input("Enter your age: ", age);

    out("Hello, ");
    outln(name);
    out("You are ");
    outln(age);
}

About

A library to simplify C++ io.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages