前端之家收集整理的这篇文章主要介绍了
如何通过Java运行我的haskell函数,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我在math.hs中
添加了
haskell函数
如何通过Java程序运行add函数并将输出存储为变量?
可能类似于以下内容:
public int runHaskell(String haskellFile) {
int output;
//run add function from file 'math.hs' and store result to output
return output;
}
(如果需要,我还可以访问目标文件:math.o和解释器文件math.hi以及可执行文件main.exe.)
原文链接:https://www.f2er.com/java/128827.html