this post was submitted on 18 Oct 2023
1 points (100.0% liked)
Lisp
53 readers
3 users here now
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
To add more context to this response: Java has this notion of static methods that belong to classes, compared to the regular methods that belong/act on instances. So ABCL's
jmethod
is to call a method using an instance, whilejstatic
is to call a static method using a class.Math.sqrt
happens to be a static method ofMath
class, so usejstatic
. Once this static/regular distinction is cleared up, ABCL interface becomes quite usable.