You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to SWI-Prolog
New versions of packs: requires (1.0) and stoics_lib (0.1) on the server.
The requires pack facilitates loading of
1. libs in pack aware fashion 2. code within the files of own pack 3. code from other packs without loading the whole pack and 4. code from user specific library directories.
Installation
?- pack_install(requires).
Testing
?- use_module( library(requires) ).
?- lib( lists ).
Pack stoics_lib
Is an example of how to organise packs so that other users can load part of the code base without loading the whole library.
Installation
?- pack_install(stoics_lib).
Example
?- use_module( library(requires) ).
?- lib( stoics_lib:kv_decompose/3 ). % or requires( stoics_lib:kv_decompose/3 )