Implemented reading from struct fields

This commit is contained in:
Eduard Urbach 2025-02-04 20:43:15 +01:00
parent 03a3bd8f02
commit bde68d4d64
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
10 changed files with 112 additions and 15 deletions

View file

@ -0,0 +1,6 @@
struct A {}
main() {
a := new(A)
a.x = 1
}