Explore >> Select a destination


You are here

dlang.org
| | ddili.org
3.2 parsecs away

Travel
| | Unions, the feature that allows sharing the same memory area for more than one member.
| | qsantos.fr
4.2 parsecs away

Travel
| | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers ?
| | ciesie.com
3.0 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").
| | satharus.me
27.3 parsecs away

Travel
| Programs... Binaries... PE Files... ELF Files... What are those? If you've read about computers at some point or even just used them, you've probably come across the...