-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from billhails/arithmetic
Arithmetic
- Loading branch information
Showing
37 changed files
with
984 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<mxfile host="Electron" modified="2024-04-05T17:29:34.512Z" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.6.5 Chrome/114.0.5735.243 Electron/25.3.1 Safari/537.36" etag="euueRJ_i7iDJl8OJ7Vv5" version="21.6.5" type="device"> | ||
<diagram name="Page-1" id="BLDVzQ1TnQkECbLpREf5"> | ||
<mxGraphModel dx="1866" dy="1173" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0"> | ||
<root> | ||
<mxCell id="0" /> | ||
<mxCell id="1" parent="0" /> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-26" value="quadratic" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1"> | ||
<mxGeometry x="200" width="520" height="320" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-7" value="complex" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1"> | ||
<mxGeometry x="220" y="40" width="340" height="260" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-17" value="rational" style="rounded=0;whiteSpace=wrap;html=1;verticalAlign=top;" vertex="1" parent="1"> | ||
<mxGeometry x="240" y="80" width="160" height="200" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-4" value="irrational" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> | ||
<mxGeometry x="420" y="140" width="120" height="60" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-14" value="bigInt" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> | ||
<mxGeometry x="260" y="120" width="120" height="60" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-15" value="smallInt" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> | ||
<mxGeometry x="260" y="200" width="120" height="60" as="geometry" /> | ||
</mxCell> | ||
<mxCell id="yBlL6VTiBweEXrjM-FRY-27" value="symbol" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1"> | ||
<mxGeometry x="580" y="140" width="120" height="60" as="geometry" /> | ||
</mxCell> | ||
</root> | ||
</mxGraphModel> | ||
</diagram> | ||
</mxfile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
print(2 + 2); | ||
print(6 - 2); | ||
print(8 / 2); | ||
print(2 * 2); | ||
print(16 % 12); | ||
print(2 ** 2); | ||
print(1 + 4294967295); | ||
print(4294967295 + 4294967295); | ||
print(1234567890123456789 * 2); | ||
print(1234567890123456789 ** 200); | ||
print(4294967295555 % 4294967295555); | ||
print(4294967295555 - 429496729555); | ||
print(-429496729555); | ||
print(-429496729555 / 2); | ||
print(4294967295555 % 429); | ||
print(10 - 1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print(10 ** 100) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print(1.5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.