Change "# will print 1, 2, 3, 4" to "# will print 1, 2, 3"

jiw
2025-01-12 21:55:36 -07:00
parent 69058b7a3b
commit 2eb559d7b4

@@ -331,7 +331,7 @@ You can assign to x[n], modifying the memory contents. There is no bounds checki
```py
@micropython.viper
def myfunction( x:ptr32, b:bool )->int:
print(x[0], x[1], x[2] ) # will print 1, 2, 3, 4
print(x[0], x[1], x[2] ) # will print 1, 2, 3
return x[1]
myfunction( array.array("l", (1,2,3,4)))