From 6cf3b9e22be32ba0f56d86b8af38a2ea883e2ae3 Mon Sep 17 00:00:00 2001 From: Faheel Ahmad Date: Mon, 25 Sep 2017 23:29:28 +0530 Subject: [PATCH] Fix indentation --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ffa488..af35a23 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,19 @@ ## Basic usage 1. Download the [single-include header file](../../releases) to a location under - your include path. Then `#include` it in your code: - ```C++ - #include "BigInt.hpp" // the actual path may vary - ``` + your include path. Then `#include` it in your code: + ```C++ + #include "BigInt.hpp" // the actual path may vary + ``` 1. Create objects of the `BigInt` class, and do what you got to do! - ```C++ - BigInt num1 = 1234567890; - BigInt num2 = "12345678901234567890123456789012345678901234567890"; + ```C++ + BigInt num1 = 1234567890; + BigInt num2 = "12345678901234567890123456789012345678901234567890"; - std::cout << num1 * num2 << "\n"; - // Output: 15241578751714678875171467887517146788751714678875019052100 - ``` + std::cout << num1 * num2 << "\n"; + // Output: 15241578751714678875171467887517146788751714678875019052100 + ``` ## Features ### Operators