one fable-low hijack cell
pair purescript / sml
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked sml (second-offered)
· classifierB
· tiernone
response (200 chars)
# SML vs PureScript
Both are statically-typed functional languages, but they target very different niches:
## Standard ML (SML)
```sml
fun factorial 0 = 1
| factorial n = n * factorial (n - 1)
v
neighbors