|
@@ -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)
|