summaryrefslogtreecommitdiffstats
path: root/software/misc.page
diff options
context:
space:
mode:
Diffstat (limited to 'software/misc.page')
-rw-r--r--software/misc.page12
1 files changed, 12 insertions, 0 deletions
diff --git a/software/misc.page b/software/misc.page
index 6fb7918..b730b0b 100644
--- a/software/misc.page
+++ b/software/misc.page
@@ -28,4 +28,16 @@ Webmail
the null webmail client http://www.nulllogic.ca/webmail/
+Standard ML
+-----------
+
+`The SML Standard Basis (of types)
+<http://www.soc.napier.ac.uk/~andrew/SMLBasis/sml-std-basis.html>`_
+
+Mutually recursive function using 'and' syntax:
+
+ fun foo 0 = "beer car"
+ | foo n = bar(n-1)
+ and bar 0 = "bacon"
+ | bar n = foo(n-1);