Skip to content

Commit

Permalink
Add test for the remainder operator %
Browse files Browse the repository at this point in the history
  • Loading branch information
Vesselin Atanasov committed Oct 20, 2024
1 parent d3dbcba commit 47d0f44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/expressions_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ R"(
{{ 7 / 3}}
{{ 7 // 3 }}
{{ 7 % intValue }}
{{ 7 % 11 }}
{{ 3 ** 4 }}
{{ 10 ** -2 }}
{{ 10/10 + 2*5 }}
Expand Down Expand Up @@ -48,6 +49,7 @@ R"(
2.3333333
2
1
4
81
0.01
11
Expand Down

0 comments on commit 47d0f44

Please sign in to comment.