altos/lisp: Separate out values from atoms
[fw/altos] / src / test / ao_lisp_test.c
1 /*
2  * Copyright © 2016 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 #include "ao_lisp.h"
16 #include <stdio.h>
17
18 static struct ao_lisp_cons      *list;
19 static char                     *string;
20
21 int
22 main (int argc, char **argv)
23 {
24         int                     i, j;
25         struct ao_lisp_atom     *atom;
26
27         ao_lisp_root_add(&ao_lisp_cons_type, (void **) &list);
28         ao_lisp_root_add(&ao_lisp_string_type, (void **) &string);
29
30         /* allocator test */
31         for (j = 0; j < 10; j++) {
32                 list = 0;
33                 string = ao_lisp_string_new(0);
34                 for (i = 0; i < 2; i++) {
35                         string = ao_lisp_string_cat(string, "a");
36                         list = ao_lisp_cons_cons(ao_lisp_string_poly(string), list);
37                         list = ao_lisp_cons_cons(ao_lisp_int_poly(i), list);
38                         atom = ao_lisp_atom_intern("ant");
39                         list = ao_lisp_cons_cons(ao_lisp_atom_poly(atom), list);
40                 }
41                 ao_lisp_poly_print(ao_lisp_cons_poly(list));
42                 printf("\n");
43         }
44
45         for (atom = ao_lisp_poly_atom(ao_builtin_atoms); atom; atom = ao_lisp_poly_atom(atom->next)) {
46                 printf("%s = ", atom->name);
47                 ao_lisp_poly_print(ao_lisp_atom_get(ao_lisp_atom_poly(atom)));
48                 printf("\n");
49         }
50 #if 1
51         list = ao_lisp_cons_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("+")),
52                                  ao_lisp_cons_cons(ao_lisp_cons_poly(ao_lisp_cons_cons(ao_lisp_atom_poly(ao_lisp_atom_intern("+")),
53                                                                                        ao_lisp_cons_cons(ao_lisp_int_poly(3),
54                                                                                                          ao_lisp_cons_cons(ao_lisp_int_poly(4), NULL)))),
55                                                    ao_lisp_cons_cons(ao_lisp_int_poly(2), NULL)));
56         printf("list: ");
57         ao_lisp_poly_print(ao_lisp_cons_poly(list));
58         printf ("\n");
59         ao_lisp_poly_print(ao_lisp_eval(ao_lisp_cons_poly(list)));
60         printf ("\n");
61
62         ao_lisp_read_eval_print();
63 #endif
64 }