1
0
Fork 0
forked from fun/fun

More REPL enhancements. Type :help in the REPL to get more information.

This commit is contained in:
Johannes Findeisen 2025-09-15 01:13:13 +02:00
commit 08e7c9a623
5 changed files with 168 additions and 9 deletions

View file

@ -35,5 +35,8 @@ void free_value(Value v);
void print_value(const Value *v);
int value_is_truthy(const Value *v);
/* stringify into a newly-allocated C string; caller must free */
char *value_to_string_alloc(const Value *v);
#endif