summaryrefslogtreecommitdiff
path: root/exercises/110_bit_manipulation3.zig
diff options
context:
space:
mode:
authorAlexander Sisco <36649949+devspeare@users.noreply.github.com>2025-02-04 09:31:29 -0800
committerAlexander Sisco <36649949+devspeare@users.noreply.github.com>2025-02-04 09:31:29 -0800
commit502ac8711e29bae3d0d9e4b1489b6e475369f321 (patch)
tree3a3208ef54a7477fa106d6b6514cedbbba19d55d /exercises/110_bit_manipulation3.zig
parent0fa86eb8c8fc76f8f1bb396b83d1d453edd870d1 (diff)
added newline between toggle and set sections to
make the expected output match
Diffstat (limited to 'exercises/110_bit_manipulation3.zig')
-rw-r--r--exercises/110_bit_manipulation3.zig2
1 files changed, 2 insertions, 0 deletions
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.
//
// ------------------------------------------------------------------------