summaryrefslogtreecommitdiffstats
path: root/test cases/unit/17 prebuilt shared/another_visitor.c
blob: 18e5f150eb985f37c0e77c45ac0a03b2d2e069fe (plain)
1
2
3
4
5
6
7
8
9
10
#include<alexandria.h>
#include<stdio.h>

int main(int argc, char **argv) {
    printf("Ahh, another visitor. Stay a while.\n");
    printf("You enter the library.\n\n");
    alexandria_visit();
    printf("\nYou decided not to stay forever.\n");
    return 0;
}