2019-02-09 19:55:51 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2019-01-19 14:42:56 +01:00
|
|
|
#include "init.h"
|
2019-01-08 22:19:29 +01:00
|
|
|
#include "read.h"
|
2019-01-14 03:16:25 +01:00
|
|
|
#include "eval.h"
|
2019-01-08 22:19:29 +01:00
|
|
|
#include "print.h"
|
2019-01-03 16:59:28 +01:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2019-01-19 14:42:56 +01:00
|
|
|
init();
|
2019-02-09 19:55:51 +01:00
|
|
|
while (print(eval(read("ШКЉ> "), globalEnv)));
|
|
|
|
printf("\nДостигнут крај стрима.\nЗбогом и дођите нам опет!\n");
|
|
|
|
|
|
|
|
return 0;
|
2019-01-03 16:59:28 +01:00
|
|
|
}
|