From 9b9db822f0151222ef8af4a7d4abafc82b335557 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 21 Feb 2022 15:41:29 -0800 Subject: [PATCH] Fix some errors in Readme.md --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 4243ba3..3e9b7ad 100644 --- a/Readme.md +++ b/Readme.md @@ -12,7 +12,7 @@ Compiling & Running Portable C99, no dependencies, nothing to configure, no documentation! -You'll need some version LLVM for clang, and GNU make. Compiles with GCC too if you prefer, just +You'll need some version of LLVM for clang, and GNU make. Compiles with zig or GCC too if you prefer, just change the Makefile. Once you have all that you can build the repl: @@ -44,7 +44,7 @@ If you want to build a static library: $ make liblake -The binary will be in `build/liblake.a` and you may do with it as you like. Lake creates no global variables and has no shared state. Everything is neatly wrapped up in a [`LakeCtx`](lake/blob/master/src/lake.h#L101-109) so theoretically you can run multiple interpreters in the same process. I haven't tried it yet but it should work. +The binary will be in `build/liblake.a` and you may do with it as you like. Lake creates no global variables and has no shared state. Everything is neatly wrapped up in a [`LakeCtx`](lake/blob/main/src/lake.h#L101-109) so theoretically you can run multiple interpreters in the same process. I haven't tried it yet but it should work. Tests =====