What's a good Prolog IDE for Linux? [closed]

2019-03-17 03:04发布

I need to write some Prolog programs for a class.

Any recommendations?

标签: linux ide prolog
14条回答
\"骚年 ilove
2楼-- · 2019-03-17 03:29

As mentioned you can use SWI-Prolog. If you like Eclipse there is an Eclipse plug-in that integrates SWI-Prolog into Eclipse. This way you have the best of both worlds, for example the SVN etc functions of Eclipse and the graphic debugger of SWI-Prolog. Worth checking out.

http://sewiki.iai.uni-bonn.de/research/pdt/start

查看更多
小情绪 Triste *
3楼-- · 2019-03-17 03:32

I just use Vim or jEdit. Prolog as a language doesn't really lend itself to strong IDE support. For one thing, it's dynamically typed, which throws a huge wrench into tooling. For another, it's a logic-based language, which means that the "code flow" (order in which you construct the program) is non-linear. Existing techniques for building highly advanced IDEs just don't apply to that sort of paradigm.

查看更多
Ridiculous、
4楼-- · 2019-03-17 03:32

Honestly, I can't see an 'IDE' helping out much on prolog. It'll only aid in finding syntax errors. The rest is in the debugging and the thought process.

Get syntax-highlighting with any editor and you're set to go.

查看更多
干净又极端
5楼-- · 2019-03-17 03:33

If you are used to an Emacs environment I would recommend the Ciao distribution. Go to: http://ciaohome.org/

查看更多
做个烂人
6楼-- · 2019-03-17 03:33

Visual Prolog (works with Wine).

查看更多
劳资没心,怎么记你
7楼-- · 2019-03-17 03:35

SWI-Prolog comes with excellent IDE tools, an Emacs-clone text editor, interactive debugger, complete browseable help system and docs. Give it a try.

查看更多
登录 后发表回答