aboutsummaryrefslogtreecommitdiff
path: root/examples/int.fusp
diff options
context:
space:
mode:
authorCamil Staps2016-10-04 20:16:56 +0200
committerCamil Staps2016-10-04 20:16:56 +0200
commit2cd524e55f4d3057fe82db119541b1b5284629dc (patch)
tree5ed4dc27682c39a9c3f4c1e3a9f731c02a32b63b /examples/int.fusp
parentDebug graph readability improvements (diff)
Examples
Diffstat (limited to 'examples/int.fusp')
-rw-r--r--examples/int.fusp10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/int.fusp b/examples/int.fusp
new file mode 100644
index 0000000..fe1e32d
--- /dev/null
+++ b/examples/int.fusp
@@ -0,0 +1,10 @@
+sub a b = code sub a b;
+add a b = code add a b;
+mul a b = code mul a b;
+
+eq a b = code eq a b;
+ge a b = code ge a b;
+gt a b = code gt a b;
+le a b = code le a b;
+lt a b = code lt a b;
+ne a b = code ne a b;