From 26a7117729943e54c2b83e72942a193424655119 Mon Sep 17 00:00:00 2001 From: Aniruddh Date: Sat, 22 Feb 2014 17:53:14 -0500 Subject: [PATCH] added sml hello world --- s/standard-ml.sml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 s/standard-ml.sml diff --git a/s/standard-ml.sml b/s/standard-ml.sml new file mode 100644 index 00000000..980fe61d --- /dev/null +++ b/s/standard-ml.sml @@ -0,0 +1,2 @@ +fun hello() = print("Hello world!\n"); +hello()