|
You are here |
blog.orhun.dev | ||
| | | | |
blog.logrocket.com
|
|
| | | | | Compare the Rust and Zig programming languages based on their performance and use cases for improving how developers code. | |
| | | | |
mrcat.au
|
|
| | | | | I've started learning Zig, a new programming language in the same problem space as C, and it has some features I really like. While it's not memory-safe in the Rust way, it has a lot of compile time and runtime checks to prevent common footguns. It has packed structs and variable-width integers to allow for easy parsing of bitpacked binary formats. Its comptime metaprogramming capabilities are spectacular. And it even interoperates seamlessly with C! | |
| | | | |
ciesie.com
|
|
| | | | | Today I've played around with Zig, the new, hip (is it hip?) programming language. I find it pretty neat. I'm going to walk you (and myself) through my first, very short, piece of code. Below you can see the entirety of it. It basically allocates a 2MB buffer and reads a file into it... Yep, not particularly impressive, but this is a judgment free, learning zone, ok?! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 const std = @import("std"); const warn = @import("std"). | |
| | | | |
bootcamp.berkeley.edu
|
|
| | | Artificial intelligence (AI) is an essential element of many software development projects that allows developers to create software that can perceive, learn, reason and solve problems - much in the way a human mind operates. Learning how to apply artificial intelligence is critical for many job roles, especially for those interested in pursuing a career... | ||