turn Assign into a statement

This commit is contained in:
2026-05-28 08:49:18 +02:00
parent 45253bf004
commit fa5ff0aaa5
6 changed files with 129 additions and 136 deletions

View File

@@ -290,7 +290,7 @@ func main[argc: i64, argv: ptr] : i64
c := chip8_create()
buffer : io.Buffer = must(io.read_binary_file?(path))
buffer : Blob = must(io.read_binary_file?(path))
for i in 0..buffer->size
c->memory[0x200 + i] = buffer->data[i]