Browse Source

added newline between toggle and set sections to
make the expected output match

Alexander Sisco 6 months ago
parent
commit
502ac8711e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      exercises/110_bit_manipulation3.zig

+ 2 - 0
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.
     //
     // ------------------------------------------------------------------------