Read more at the JavaConnect project page:
Would be interesting to know how this relates to Joachim Geidels JNIPort project.
Transcript show: (50.0 - 7.23) asString
#include
int main(int argc, char ** argv) {
double a = 50.0 - 7.23;
printf("%lf", a);
}
public class Test {
public static void main(String[] args) {
double a = 50.0 - 7.23;
System.out.println(a);
}
}