Implemented type checks

This commit is contained in:
Eduard Urbach 2024-08-07 16:20:03 +02:00
parent baa2463b4b
commit cacee7260a
Signed by: eduard
GPG key ID: 49226B848C78F6C8
19 changed files with 199 additions and 79 deletions

View file

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