Paulo Moura

Results 129 comments of Paulo Moura

Indeed I'm currently using d2 `package` shape as the alternative to the Graphviz `tab` shape. But d2 `rectangle` shape is not (in my particular case) a good replacement for the...

I need a shape for a _component_ (_category_ in Logtalk lingo) that visually helps distinguish from _objects_ and _protocols_ (interfaces), which uses a box/rectangle shape. But I don't see this...

My diagrams tool already supports an option that does just that. The text is printed below the label in a small font size. You can see an **old** example at:...

I am. I just provided that old example to show that what you described as "adding a > to objects, distinct from label" is already implemented by Logtalk's [diagrams](https://logtalk3.readthedocs.io/en/latest/devtools/diagrams.html) tool,...

P.S. Historical note: the `file_search_path/2` predicate (and corresponding mechanism) was introduced by Quintus Prolog and later copied by systems such as SWI-Prolog and SICStus Prolog.

Both queries succeed for me without errors or crashes using the latest git version on macOS Intel 14.7.2.

You can run GNU Prolog on Windows from the command line (e.g. using PowerShell).

If at some point Scryer Prolog provides a process creation predicate that allows connecting Prolog default input/output streams with the process input/output streams, the main task for providing embedded help...

Two common solutions are (1) to use the standard `include/1` directive or (2) de facto standard compilation directives. For example: ```logtalk :- module(foo, [bar/1]). :- include(raw). ``` Or: ```logtalk :-...