Explore >> Select a destination


You are here

arne.me
| | pmig96.wordpress.com
15.2 parsecs away

Travel
| | Having recently found the Zig programming language, I asked myself: what would it take to code a PumpkinOS application in Zig? Now, before we start I should warn you that I had never programmed in Zig before. What I will show here is a proof of concept containing a pretty simple Zig program integrated with...
| | www.openmymind.net
10.0 parsecs away

Travel
| |
| | ciesie.com
9.6 parsecs away

Travel
| | 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").
| | ashvardanian.com
68.4 parsecs away

Travel
| Experienced devs may want to skip the intro or jump immediately to the conclusions. The backbone of many foundational software systems - from compilers and interpreters to math libraries, operating systems, and database management systems - is often implemented in C and C++. These systems frequently offer Software Development Kits (SDKs) for high-level languages like Python, JavaScript, GoLang, C#, Java, and Rust, enabling broader accessibility. But there is a catch.