aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/main.c')
-rw-r--r--clox/src/main.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/clox/src/main.c b/clox/src/main.c
new file mode 100644
index 0000000..9aeb8fd
--- /dev/null
+++ b/clox/src/main.c
@@ -0,0 +1,18 @@
+#include "common.h"
+#include "chunk.h"
+#include "debug.h"
+
+int main(int argc, const char* argv[]) {
+ Chunk chunk;
+ initChunk(&chunk);
+
+ int constant = addConstant(&chunk, 1.2);
+ writeChunk(&chunk, OP_CONSTANT, 123);
+ writeChunk(&chunk, constant, 123);
+
+ writeChunk(&chunk, OP_RETURN, 123);
+
+ disassembleChunk(&chunk, "test chunk");
+ freeChunk(&chunk);
+ return 0;
+}