Comment by numeromancer
Comment by numeromancer 2 days ago
Just no.
address = X
length = *X
address = address + 1
while length > 0 {
address = address + 1
print *address
}
Comment by numeromancer 2 days ago
Just no.
address = X
length = *X
address = address + 1
while length > 0 {
address = address + 1
print *address
}
Author here. You're quite right that this isn't the thing you would normally do. I'm just trying to help people work through the logic of the system with as few dependencies as possible, hence this (admittedly yucky) piece of pseudocode which isn't really C or Rust or Python or anything...