@@ -28,7 +28,7 @@ func (m *Memory) Write(addr int, values []int) error {
m.intern[addr+i] = values[i]
}
// we've written past our marker, note that
if m.nextFree < addr+len(values) {
if m.nextFree <= addr+len(values) {
m.nextFree = addr + len(values)
return nil
The note is not visible to the blocked user.