aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.c
blob: 71961ef7adf6c65d92fdd6a915992a8445a990c0 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

#include "common.h"
#include "compiler.h"
#include "scanner.h"

void compile(const char *source) { initScanner(source); }