From cfe9f50028d9e10b3993954c3bae6589388fccf9 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 26 Dec 2025 14:15:04 +0100 Subject: [PATCH] Just use the default path --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1cfba2a..5c24317 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Tiny Pure Functional Programming Language in C. Based on [Untype Lambda Calculus ```console $ cc -o lamb lamb.c -$ ./lamb ./std.lamb +$ ./lamb std.lamb ... ,---@> W-W' @@ -27,7 +27,7 @@ RESULT: 420 It's recommended to use Lamb with [rlwrap](https://github.com/hanslub42/rlwrap). Just do ```console -$ rlwrap ./lamb +$ rlwrap lamb ``` and you get Bash-style history and command line navigation. @@ -163,7 +163,7 @@ RESULT: ((f a) b) c `#void` - when applied to a lambda expression it becomes a potential redex. When reduced it forces the reduction of its argument and returns itself. Useful when you only care about the side effects of the evaluation but not the result which might be long and useless anyway: ```console -$ ./lamb ./std.lamb +$ ./lamb std.lamb @> xs = cons 69 (cons 420 (cons 1337 (cons foo (cons bar (cons bar nil))))) Created binding xs @> #void (trace_list xs) @@ -307,7 +307,7 @@ We provided a bunch of useful bindings in [std.lamb][./std.lamb]. Passing a file as a command line argument to the interpreter acts as if you instantly `:load`-ed it. ```console -$ ./lamb ./main.lamb +$ ./lamb main.lamb Created binding id Created binding const Created binding true