mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
ea81a8087b
- types: low-level mapping to the implementation language. - core: functions on types that are exposed directly to mal. - printer: implementation called by pr-str, str, prn, println. - env: the environment implementation - Also, unindent all TCO while loops so that the diff of step4 and step5 are minimized.
10 lines
190 B
C
10 lines
190 B
C
#ifndef __MAL_PRINTER__
|
|
#define __MAL_PRINTER__
|
|
|
|
#include "types.h"
|
|
|
|
char *_pr_str_args(MalVal *args, char *sep, int print_readably);
|
|
char *_pr_str(MalVal *obj, int print_readably);
|
|
|
|
#endif
|