This repository has been archived on 2023-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
iaj/TP1/Prolog/AidesCPP/2.cpp

18 lines
346 B
C++
Raw Normal View History

2023-02-01 10:10:53 +01:00
#include <SWI-cpp.h>
2023-02-01 10:19:02 +01:00
#include <cstdio>
2023-02-01 10:10:53 +01:00
// swipl-ld -ld g++ -goal true 2.cpp 2-f.pl
// attention, recompile nécessaire si 2-f.pl change
2023-02-01 10:19:02 +01:00
int main(int _ac, char **_av) {
2023-02-01 10:10:53 +01:00
PL_initialise(_ac, _av);
2023-02-01 10:19:02 +01:00
2023-02-01 10:10:53 +01:00
PlTermv pl_args2(1);
PlQuery q0("f", pl_args2);
2023-02-01 10:19:02 +01:00
while (q0.next_solution()) {
2023-02-01 10:10:53 +01:00
printf("---> %s\n", (char *)pl_args2[0]);
}
return 0;
}