I like the changes made in the alpha #2180
josephtoles
started this conversation in
General
Replies: 1 comment
-
Glad you're liking the changes! Let us know if you have any other ideas to improve the language. We may be getting close to release, but there's always room to improve. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been using Hy's stable release for the past couple years. I just switched to the alpha. There are a lot of things I like about it.
import
andrequire
statements have been removed.&rest
has been replaced by#*
. It's shorter, prettier and more Pythonic.if
to three arguments is the right way to go, from a language design standpoint. The previous behavior ofif
confused new people when I showed them Hy.defmacro!
. There have been times in the past that I wish it had that feature.HySymbol
toSymbol
(and similar name changes) makes things shorter and prettier.-
is distinguished from_
in places where it previously wasn't. I thought that would never happen. This appears to be a very good change for the language.Beta Was this translation helpful? Give feedback.
All reactions