diff options
Diffstat (limited to 'examples/sml/support/adder.sig')
-rw-r--r-- | examples/sml/support/adder.sig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/sml/support/adder.sig b/examples/sml/support/adder.sig new file mode 100644 index 0000000..4203823 --- /dev/null +++ b/examples/sml/support/adder.sig @@ -0,0 +1,5 @@ +(* Your task is to implement this. *) +signature ADDER = +sig + val add : (int * int) -> int +end |