Clingo
Loading...
Searching...
No Matches
base-atoms.c

The example shows how to iterate over symbolic atoms.

The example shows how to iterate over symbolic atoms.

Output

./base 0
Symbolic atoms:
b
c, external
a, fact

Code

// NOLINTNEXTLINE(bugprone-reserved-identifier)
#define __STDC_FORMAT_MACROS
#include <stdio.h>
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
printf("TODO\n");
return 0;
}