We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87e73c commit 39f32ecCopy full SHA for 39f32ec
sml/.gitignore
@@ -0,0 +1,5 @@
1
+clockhands
2
+hello
3
+precedence_switch
4
+quicksort
5
+stack
sml/precedence_switch.sml
@@ -0,0 +1,3 @@
+3 * 8 - 5 * 1 = 19 orelse raise Fail "bad";
+infix 5 *;
+3 * 8 - 5 * 1 = 9 orelse raise Fail "bad";
sml/test.sh
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
mlton clockhands.sml && ./clockhands | diff ../test/clockhands_expected - && \
mlton hello.sml && ./hello && \
+mlton precedence_switch.sml && ./precedence_switch && \
mlton quicksort.sml && ./quicksort && \
6
mlton stack.sml && ./stack
7
0 commit comments