Imaginary chimera languages with Codex

1 · Shane Mulligan · Sept. 6, 2021, 12:48 p.m.
Summary I explore some imaginary chimera languages with Codex. scheme + bash 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Language: chimera language based on scheme and bash. File contents: ;; String replace is with isnt (apply (sed s/is/isnt/) "My name is Shane") --> "My name isnt Shane" ;; Get the first field of each list (mapcar (cut -d ' ' -f 1) '("Hello world" "Hakuna Matata")) --> '("Hello" "Hakuna") (split "\n" (ls)) --> '("chimera" "chimera....