osh.h

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

README.md (334B)


      1 # osh.h
      2 
      3 My personal stdc++ replacement
      4 
      5 Because compared to
      6 ```cpp
      7 #include <iostream>
      8 
      9 using namespace std;
     10 
     11 int main() {
     12    cout << "Hollow World!" << endl;
     13 
     14    return 0;
     15 }
     16 ```
     17 this is better
     18 ```cpp
     19 #define OSH_H_IMPLEMENTATION
     20 #include "osh.h"
     21 
     22 using namespace osh;
     23 
     24 int main() {
     25     println("Hello, World!");
     26 
     27    return 0;
     28 }
     29 ```