hmm, playing around with some magic syntax, I'm us...
# announcements
g
hmm, playing around with some magic syntax, I'm using JNA and I've got it to the point where thsi compiles and runs:
Copy code
interface MyFortranCode: com.sun.jna.Library {
  fun start(featureIndex: Int): Boolean
  fun end(featureIndex: Int): Boolean

  companion object: MyFortranCode by LibraryLoader.load<MyFortranCode>()
}
too much magic?