Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 368 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 368 Bytes

##Inom

This library is aimed at being a proof of concept and nothing more. It's not intended for any real use and it's numerically just a mental and theoretical masturbation.

####Example

#include <iostream>
#include <inom/integer>

int main() {
    using namespace inom::literals;
    auto x = 1_int;
    auto y = 2_int;
    std::cout << (x + y); // 3
}