From b131e343bb8a2b126a5370138d826d87d74fce30 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 2 Aug 2021 18:09:03 -0700 Subject: Chapter 16.1 --- clox/src/compiler.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 clox/src/compiler.h (limited to 'clox/src/compiler.h') 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 -- cgit v1.2.3-54-g00ecf