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. // // ------------------------------------------------------------------------