Aye, like in https://www.youtube.com/watch?v=zt0OQb1DBko where it's twice emphasized that "there are no typos here--this is what ATS looks like". Those are the most off-putting.
I would also prefer a more OCaml-like "let val x=1 in (expression)" to the existing "let val x=1 in (expression) (expression) ... end". Which would be better in ATS than in OCaml since 'let' isn't otherwise used. Mainly because there's less to indent: let cube_round (x, y, z) = let round r = floor (r +. 0.5) in let rx, ry, rz = round x, round y, round z in let xd, yd, zd = abs_float (rx -. x), abs_float (ry -. y), abs_float (rz -. z) in (* ^-- no indentation changes --v *) if xd > yd && xd > zd then (-. (ry -. rz), ry, rz) else if yd > zd then (rx, (-. (ry -. rz)), rz) else (rx, ry, (-. (rx -. ry))) OTOH, OCaml is not famously regarded as good-looking. On the contrary Facebook gave it a purely syntatic makeover in ReasonML and people seem to really like that. Other than those two I don't have many complaints. Maybe it could be emphasized more (in documentation) that there's flexibility to do things different ways. You can use (a; b; ignoreat(c); d) instead of a bunch of val () =. You can write datatype rps_move = rock | paper | scissors // without the parens , etc. On Friday, February 9, 2018 at 3:57:11 PM UTC-6, Martin DeMello wrote: > > I would love to see t@ype and similar keywords with symbols in the middle > replaced by something more pronounceable - the lack of quick mental > pronunciation is a surprisingly large annoyance when reading and wirting > code. > > martin > > On Fri, Feb 9, 2018 at 10:15 AM, gmhwxi <gmh...@gmail.com <javascript:>> > wrote: > >> For the moment, I just want to open a thread for ATS3. >> >> I decided to pick ATS/Xanadu for the full project name. I like the name >> Xanadu >> because it is poetic and brings a feel of exoticness. >> >> ATS3 is supposed to be compiled to ATS2. At least at the beginning. I >> will try to >> write more about what I have in mind regarding ATS3. >> >> I know that a lot of people have been complaining about the syntax of >> ATS2. So >> we can start the effort of designing some "nice" syntax for ATS3. Please >> feel free >> to post here if you would like share your opinions and ideas. >> >> I will be happy to take the lead but we definitely need to have some form >> of community >> effort on this project given its size and scope. >> >> Cheers! >> >> --Hongwei >> >> PS: I felt rushed every time up to now when implementing ATS. This time I >> am hoping >> to have the luxury of thinking about implementation a bit before actually >> doing it :) >> >> -- >> 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 ats-lang-user...@googlegroups.com <javascript:>. >> To post to this group, send email to ats-lan...@googlegroups.com >> <javascript:>. >> 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/8d547585-a0ce-494e-8568-a0657274deb0%40googlegroups.com >> >> <https://groups.google.com/d/msgid/ats-lang-users/8d547585-a0ce-494e-8568-a0657274deb0%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > > -- 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 ats-lang-users+unsubscr...@googlegroups.com. To post to this group, send email to ats-lang-users@googlegroups.com. 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/f1058cf1-13f3-48c5-8a2d-50370505cbb8%40googlegroups.com.