#ifndef TOKENS_H
#define TOKENS_H
#include "pebblisp.h"
int isSingle(const char c);
int isDigit(const char c);
struct Slice *nf_tokenize(const char *input);
#endif