Implemented type checks

This commit is contained in:
2024-08-07 16:20:03 +02:00
parent 6e848774ed
commit 1b13539b22
19 changed files with 199 additions and 79 deletions

View File

@ -0,0 +1,7 @@
main() {
writeToMemory(0)
}
writeToMemory(p Pointer) {
p[0] = 'A'
}