Hacker News new | ask | show | jobs
Try Standard ML in the Browser, Courtesy of Univeristy of Saarland
1 points by metacontent 2471 days ago
https://sosml.org/

https://github.com/SOSML/SOSML

Nice to see a new SML project, even if it happens to be written in typescript.

Requires ; at the end of statements to evaluate. For example

fun gcd (x, y) = if y = 0 then x else gcd (y, x mod y); gcd(56, 24);

1 comments

I already submitted this: https://news.ycombinator.com/item?id=20912460

P.S. Are you the same person who submitted this on Reddit?