On Mon, Oct 22, 2018 at 11:43 AM Kiwamu Okabe <[email protected]> wrote: > How about introduce your infix syntax such like Haskell? > > "Infix Functions In Haskell" > https://wuciawe.github.io/functional%20programming/haskell/2016/07/03/infix-functions-in-haskell.html > > The infix syntax in Haskell has: > > A. order such like `infixl 7 *` > B. way on left or right > > I believe that you already have B on your infix syntax, but not A.
Ah, I already has A: ``` #infixl * / % mod of 60 ``` When we use `#infix0`? Why use that? -- Kiwamu Okabe at METASEPI DESIGN -- You received this message because you are subscribed to the Google Groups "ats-lang-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/ats-lang-users. To view this discussion on the web visit https://groups.google.com/d/msgid/ats-lang-users/CAEvX6dkWp%2Bt8hRzGFNNSWGd-fGAQv1QhRAAdxaA0jbJnvkCEHw%40mail.gmail.com.
