From 502ac8711e29bae3d0d9e4b1489b6e475369f321 Mon Sep 17 00:00:00 2001 From: Alexander Sisco <36649949+devspeare@users.noreply.github.com> Date: Tue, 4 Feb 2025 09:31:29 -0800 Subject: [PATCH] added newline between toggle and set sections to make the expected output match --- exercises/110_bit_manipulation3.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/110_bit_manipulation3.zig b/exercises/110_bit_manipulation3.zig index baf4045..620df3f 100644 --- a/exercises/110_bit_manipulation3.zig +++ b/exercises/110_bit_manipulation3.zig @@ -119,6 +119,8 @@ pub fn main() !void { PORTB ^= (1 << 1) & (1 << 0); // What's wrong here? checkAnswer(0b1111, PORTB); + newline(); + // Now let's take a look at setting bits with the | operator. // // ------------------------------------------------------------------------