From aa0485fe33204169724d020f9c5e3b91e558ab1e Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 23 Jul 2024 17:00:56 +0100 Subject: add pend builtin function --- doc.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'doc.txt') diff --git a/doc.txt b/doc.txt index fce7e9d..d65c981 100644 --- a/doc.txt +++ b/doc.txt @@ -43,6 +43,10 @@ (arr): create new empty array (append a x): appends to array a, returns a (len a): get length of array a + (, ...): pend. concatenates arrays, promotes non-arrays to arrays + (, [1 2 3] 4) -> [1 2 3 4] + (, [1 2 3] [4 5]) -> [1 2 3 4 5] + (, 10 20) -> [10 20] etc # cmdline args bth [-Dl] [-Dt] filenames... -- cgit v1.2.3