I’m using: SWI-Prolog version: 9.0.4 for x86_64-linux.
I want the code to: start a tipc_linda server.
But what I’m getting is:
?- use_module(library(tipc/tipc_linda)).
true.
?- tipc:tipc_initialize.
true.
?- linda.
false.
My code looks like this:
use_module(library(tipc/tipc_linda)).
tipc:tipc_initialize.
linda.
I’m on Ubuntu 22.04.3 LTS.
I confirmed that tipc was added to the kernel with the “hello world” example from this website TIPC Getting Started.
I’m new to Prolog. I would appreciate if anyone has any suggestion to help me resolve this issue.
Thank you!