what's the graal native compatible way to check if a class exists at runtime? such as in a clojure library that can use platform-specific java libs (specifier linux-x86_64 for example), but obviously only use them if they are present and relevant
Class/forName works
awesome, i'll give that a try. thanks!