1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-01-16 01:31:09 +00:00

Fix call to structure function pointer

This commit is contained in:
David Schmenk 2024-09-29 12:08:26 -07:00 committed by GitHub
parent 39a5d98f93
commit 5ceb7bd6b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -986,7 +986,7 @@ end
word an_obj // an object pointer
myobject_class:init()
an_obj = myobject_class:new()
an_obj = myobject_class:new(10)
myobject_class:delete(an_obj)
```