aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/compiler.h')
-rw-r--r--clox/src/compiler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/clox/src/compiler.h b/clox/src/compiler.h
new file mode 100644
index 0000000..49a45b0
--- /dev/null
+++ b/clox/src/compiler.h
@@ -0,0 +1,6 @@
+#ifndef COMPILER_H
+#define COMPILER_H
+
+void compile(const char *source);
+
+#endif