1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 18:18:51 +03:00
mal/c/step0_repl.c
2015-03-20 08:35:53 -05:00

45 lines
791 B
C

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#ifdef USE_READLINE
#include <readline/readline.h>
#include <readline/history.h>
#else
#include <editline/readline.h>
#endif
char *READ(char prompt[]) {
char *line;
line = readline(prompt);
if (!line) return NULL; // EOF
add_history(line); // Add input to history.
return line;
}
char *EVAL(char *ast, void *env) {
return ast;
}
char *PRINT(char *exp) {
return exp;
}
int main()
{
char *ast, *exp;
char prompt[100];
// Set the initial prompt
snprintf(prompt, sizeof(prompt), "user> ");
for(;;) {
ast = READ(prompt);
if (!ast) return 0;
exp = EVAL(ast, NULL);
g_print("%s\n", PRINT(exp));
free(ast); // Free input string
}
}