mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
45 lines
791 B
C
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
|
|
}
|
|
}
|