aboutsummaryrefslogtreecommitdiffstats
path: root/shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell.c')
-rw-r--r--shell.c32
1 files changed, 28 insertions, 4 deletions
diff --git a/shell.c b/shell.c
index 578cabe..221cd07 100644
--- a/shell.c
+++ b/shell.c
@@ -4,7 +4,7 @@
#include <stdlib.h>
#include <string.h>
-void test(interpreter *it)
+void s_put(interpreter *it)
{
char *s = igetarg_string(it, 0);
if (s == 0)
@@ -12,6 +12,30 @@ void test(interpreter *it)
printf("%s\n", s);
}
+void s_type(interpreter *it)
+{
+ if (it->stidx != 1)
+ return;
+ variable *v = (variable *)it->stack[0];
+ switch (v->valtype) {
+ case STRING:
+ puts("string");
+ break;
+ case INTEGER:
+ puts("integer");
+ break;
+ case FLOAT:
+ puts("float");
+ break;
+ case FUNC:
+ puts(v->value == 0 ? "undefined" : "func" );
+ break;
+ default:
+ puts("unknown");
+ break;
+ }
+}
+
void quit(interpreter *it)
{
(void)it;
@@ -23,9 +47,9 @@ int main()
interpreter interp;
iinit(&interp);
- inew_integer(&interp, "answer", 42);
- inew_cfunc(&interp, "put", test);
- inew_cfunc(&interp, "exit", quit);
+ inew_cfunc(&interp, "put", s_put);
+ inew_cfunc(&interp, "tp", s_type);
+ inew_cfunc(&interp, "q", quit);
char *line = 0;