added newline between toggle and set sections to

make the expected output match
This commit is contained in:
Alexander Sisco 2025-02-04 09:31:29 -08:00
parent 0fa86eb8c8
commit 502ac8711e

View file

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