Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
add more creation options to readme
  • Loading branch information
SamHerts authored May 21, 2024
1 parent 04fd353 commit fc71656
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ int main() {
bigint a("123456789012345678901234567890");
bigint b("987654321098765432109876543210");

bigint small_number = 10;
bigint big_number = 789456123;

bigint c = "123456789012345678901234567890";
bigint d = "-987654321098765432109876543210";

bigint sum = a + b;
bigint diff = a - b;
bigint product = a * b;
Expand Down

0 comments on commit fc71656

Please sign in to comment.