1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-08-10 07:25:07 +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

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)
```