txlyre 4 月之前
父節點
當前提交
88b05fd1d4
共有 3 個文件被更改,包括 85 次插入34 次删除
  1. 1 1
      build.sh
  2. 79 31
      jk.c
  3. 5 2
      readme.md

+ 1 - 1
build.sh

@@ -1 +1 @@
-cc -lm -ldl -lgc -lffi jk.c -o jk
+cc -lm -ldl -lpcre -lgc -lffi jk.c -o jk

File diff suppressed because it is too large
+ 79 - 31
jk.c


+ 5 - 2
readme.md

@@ -1,6 +1,6 @@
 # jk
 jk is a recreational tacit array programming language inspired by J and K (so j + k = jk).  
-this is an implementation of the jk interpreter in C. Requires libgc (a.k.a. bdwgc) to build.
+this is an implementation of the jk interpreter in C. Requires libgc (a.k.a. bdwgc) and libpcre to build.
 
 # Examples
 ## Compute factorial
@@ -299,6 +299,9 @@ E. monadic exit          exit with exit code
 L. dyadic  tackleft      prepend x to y
 R. dyadic  tackright     append x to y
 v. monadic value         get value of var x (udf if not defined)
+x. monadic show          identity for strings, same as $ repr for other
+x. dyadic  rematch       match str y with regex (PCRE)
+X. dyadic  extract       extract all matches of regex x from y
 
 f"         each          >"1 2 3 yields 2 3 4
 xf"        merge         1 2 3,"a b c yields (1,.a),:(2,.b),:(3,.c)
@@ -340,7 +343,7 @@ xf^:Fx     under2        ~F(Fx)f(Fx)
 
 # Prebuilt binaries
 
-There is prebuilt ELF executables with statically linked libgc for x86-64 and aarch64 Linux:
+There is prebuilt ELF executables with statically linked libgc and libpcre for x86-64 and aarch64 Linux:
 
 - [x86_64](https://files.txlyre.website/d/software/jk/latest_linux_x86_64/jk)
 - [aarch64](https://files.txlyre.website/d/software/jk/latest_linux_aarch64/jk)

Some files were not shown because too many files changed in this diff