diff options
| author | Alexander Sisco <36649949+devspeare@users.noreply.github.com> | 2025-02-04 09:31:29 -0800 |
|---|---|---|
| committer | Alexander Sisco <36649949+devspeare@users.noreply.github.com> | 2025-02-04 09:31:29 -0800 |
| commit | 502ac8711e29bae3d0d9e4b1489b6e475369f321 (patch) | |
| tree | 3a3208ef54a7477fa106d6b6514cedbbba19d55d /exercises | |
| parent | 0fa86eb8c8fc76f8f1bb396b83d1d453edd870d1 (diff) | |
added newline between toggle and set sections to
make the expected output match
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/110_bit_manipulation3.zig | 2 |
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. // // ------------------------------------------------------------------------ |
