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-01-08 22:19:29 +01:00
|
|
|
for (;;)
|
2019-01-03 16:59:28 +01:00
|
|
|
{
|
2019-01-14 03:16:25 +01:00
|
|
|
print(eval(read("ШКЉ> ")));
|
2019-01-03 16:59:28 +01:00
|
|
|
}
|
|
|
|
}
|