2025-01-26 16:45:23 -08:00
|
|
|
#include "test_tart.h"
|
2025-01-29 14:46:08 -08:00
|
|
|
#include "test_term.h"
|
2025-01-29 11:24:17 -08:00
|
|
|
#include <Pickler.h>
|
2025-01-25 08:29:43 -08:00
|
|
|
int main (int argc, char *argv[]) {
|
2025-01-29 11:24:17 -08:00
|
|
|
INSTALLSHELF;
|
|
|
|
|
tart_run(&__pickle_shelf__);
|
2025-01-29 14:46:08 -08:00
|
|
|
term_run(&__pickle_shelf__);
|
2025-01-29 11:24:17 -08:00
|
|
|
return PICKLESHELF;
|
2025-01-25 08:29:43 -08:00
|
|
|
}
|