4

If I have a .jar file with a compiled scala method, is there any way to call it from a C/C++ dll ? How can I do this? I have only been able to find infos on the opposite.

Trevor Hickey
  • 36,288
  • 32
  • 162
  • 271
lezebulon
  • 7,607
  • 11
  • 42
  • 73

1 Answers1

3

A Scala program (once compiled) is a Java class. So follow this suggestion: How to access the Java method in a C++ application

Community
  • 1
  • 1
radumanolescu
  • 4,059
  • 2
  • 31
  • 44