Email or username:

Password:

Forgot your password?
Top-level
Matthew Lyon

@joshsusser I’d still rather have consistency

max(n + 2, 0)
n.+(2).max(0)
n + 2 max 0
n plus 2 max 0
(max 0 (+ n 2))
(-> n (+ 2) (max 0))

1 comment
Josh Susser

@mattly I also appreciate consistency, which is why I find postfix languages appealing. PostScript is actually pretty cool. I don't usually mind prefix with parens, but I do find the paren trees can make it harder to see the semantic forest.

Go Up