I guess this posting caught me a bit unprepared! haha
Thanks a lot for posting about Arturo in any case! This project is a love child of mine and any input/ideas/feedback is more than welcome obviously!
Feel free to follow the project or post any questions you may have on our "official" Discord channel: https://discord.gg/YdVK2CB
Stylesheet on documentation is screwing up >= symbols under
; more comparisons
and in other places, in chrome.
The language is already so spatially dense/verbose, why use the full word "function" when fn would do?
Strange that sometimes expressions are in parens and other times sqbrackets:
when? [>2] -> print "1 is greater than 2. what?!"
when? [<0] -> print "1 is less than 0. nope..."
Some things make me do a double take, where consistent style will dictate one way to do something, but will be an endless hassle to watch out for the other:
a: (2 > 3)["yes"]["no"] ; a: "no"
a: (2 > 3)? -> "yes" -> "no" ; a: "no" (exactly the same as above)
Thanks a lot for letting me know about the documentation website. There are some known issues but I've been putting them off until the upcoming update (which will coincide with the new release, which is coming very, very soon).
Regarding parentheses vs square brackets, let me explain.
Basically, in Arturo, the two things are totally different:
- with parentheses, all you do is prioritize the evaluation of a given expression - now square brackets denote a block (of values) - one of the most basic building blocks of Arturo. And a block is not to be evaluated until we need it.
Basically, the "normal", straightforward syntax would be:
``` a: switch 2 > 3 ["yes"]["no"] ```
Now, `-> "yes"` and `["yes"]` are exactly the same. All `->` does is wrap a single, computable value into a block (it's syntactic sugar, nothing more).
Now, why would we need parentheses in your example? (as you see, in mine, none was needed, as the order of evaluation is pretty much obvious)
if we did it without parentheses, given Arturo's right-to-left evaluation rule, it would mean something like: check if 3, if it's true, return "yes", otherwise return "no" and then compare that with 2. That's why we need the parentheses. But it's because `?` (switch alias) acts as an infix operator.
Wow! Your web site changed a bit since last time I saw it, congratulations Yanis! It's great to see a programming language implemented in Nim to look so polished!
Fabio, Hi! Really nice to see you around! And thanks a lot for your very kind words - I'm doing my best to find the time needed and do anything! Definitely, Arturo's is in my priority list! (Big update coming very soon!)
Also, don't think that I have forgotten about Min either. I do keep track of its progress as well! Well done to you as well! :)
I am incredibly thrilled that this exists and incredibly dissapointed I didnt create it. I love everything about it and am eager to learn more about this project. I have been interested in Nim for quite some time and see this is built with it. It even has a net package in the standard library! I would love to see some benchmark comparisons to other languages like Go and Rust, just for fun.
Thanks a lot for your kind words!! I really appreciate it and makes me keep working on the project.
Feel free to let me know in case you have any question - you are also welcome to post anything you may need in our Discord channel.
P.S. Regarding benchmarking, I can assure you I've been working non-stop on optimization so that the VM is as fast as possible. That being said, being an interpreted language, I don't think it could ever fare well against the compiled ones. I would mostly compare it to languages like Python, Ruby, Lua, etc :)
Feel free to follow the project or post any questions you may have on our "official" Discord channel: https://discord.gg/YdVK2CB