ThreadSky
About ThreadSky
Log In
mmmaellon.bsky.social
•
89 days ago
I was going to use Advent of Code to learn Zig, but I'm 1 hour in and I kinda hate the language. It feels incredibly verbose and a lot of things aren't making sense to me right now.
Comments
Log in
with your Bluesky account to leave a comment
[–]
mmmaellon.bsky.social
•
89 days ago
There are no strings, only []const u8, but error messages will say string literals are *const []u8
Unused or unmodified variables will stop your code from compiling, but omitting or fucking up return statements doesn't.
Rust is also very strict, but at least its rules felt clear and consistent.
2
reply
Posting Rules
Be respectful to others
No spam or self-promotion
Stay on topic
Follow Bluesky's terms of service
×
Reply
Post Reply
Comments
Unused or unmodified variables will stop your code from compiling, but omitting or fucking up return statements doesn't.
Rust is also very strict, but at least its rules felt clear and consistent.