osh.h

My personal stdc++ replacement
git clone git://git.oshgnacknak.de/osh.h.git
Log | Files | Refs | README

commit eeaf9ca53bcb4f7fe7a3217dfe66f67f0ec894a2
parent accc4ba9be305c87a087a70db2bc94886eb656f6
Author: Oshgnacknak <osh@oshgnacknak.de>
Date:   Sun, 23 Jan 2022 18:10:59 +0100

Add README.md

Diffstat:
AREADME.md | 29+++++++++++++++++++++++++++++
1 file changed, 29 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -0,0 +1,29 @@ +# osh.h + +My personal stdc++ replacement + +Because compared to +```cpp +#include <iostream> + +using namespace std; + +int main() { + cout << "Hollow World!" << endl; + + return 0; +} +``` +this is better +```cpp +#define OSH_H_IMPLEMENTATION +#include "osh.h" + +using namespace osh; + +int main() { + println("Hello, World!"); + + return 0; +} +```