This commit is contained in:
Chris Boesch 2023-06-09 17:25:10 +02:00 committed by GitHub
parent 947d1e4fbb
commit 80c92e3c94

View file

@ -17,7 +17,7 @@ const std = @import("std");
pub fn main() void { pub fn main() void {
// Let's store the bits of binary number 1101 in // Let's store the bits of binary number 1101 in
// 'little-endian' order (least significant byte first): // 'little-endian' order (least significant byte or bit first):
const bits = [_]u8{ 1, 0, 1, 1 }; const bits = [_]u8{ 1, 0, 1, 1 };
var value: u32 = 0; var value: u32 = 0;