├── .gitattributes ├── .github ├── actions │ ├── capture-git-hashes │ │ └── action.yml │ ├── clone-extension-repos │ │ └── action.yml │ └── divert-mandb │ │ └── action.yml └── workflows │ ├── README.md │ ├── android-build.yml │ ├── linux-gcc-build.yml │ ├── linux-tcc-build.yml │ ├── macos-build.yml │ ├── wasi-build.yml │ ├── web-build.yml │ ├── windows-mingw-build.yml │ └── windows-msvc-build.yml ├── .gitignore ├── .gitmodules ├── CREDITS.md ├── LICENSE ├── README.md ├── configs ├── README.md ├── android-build-on-arm.r ├── android-common.r ├── android-cross-compiled.r ├── bootstrap.r ├── default-config.r ├── emscripten.r ├── generic.r ├── llvm-bc.r ├── mingw-x64-c++.r ├── mingw-x64.r ├── mingw-x86.r ├── vs2019-x64.r ├── vs2019-x86.r └── wasi.r ├── extensions ├── README.md ├── clipboard │ ├── README.md │ ├── ext-clipboard-init.r │ ├── make-spec.r │ ├── mod-clipboard.c │ └── tests │ │ └── clipboard.test.r ├── console │ ├── README.md │ ├── ext-console-init.r │ ├── make-spec.r │ └── mod-console.c ├── crypt │ ├── README.md │ ├── ext-crypt-init.r │ ├── make-spec.r │ ├── mbedtls-rebol-config.h │ ├── mbedtls │ │ ├── include │ │ │ └── mbedtls │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1write.h │ │ │ │ ├── bignum.h │ │ │ │ ├── build_info.h │ │ │ │ ├── chacha20.h │ │ │ │ ├── chachapoly.h │ │ │ │ ├── check_config.h │ │ │ │ ├── cipher.h │ │ │ │ ├── config_adjust_legacy_crypto.h │ │ │ │ ├── config_adjust_ssl.h │ │ │ │ ├── config_adjust_x509.h │ │ │ │ ├── constant_time.h │ │ │ │ ├── dhm.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecp.h │ │ │ │ ├── error.h │ │ │ │ ├── gcm.h │ │ │ │ ├── hmac_drbg.h │ │ │ │ ├── md.h │ │ │ │ ├── md5.h │ │ │ │ ├── oid.h │ │ │ │ ├── pk.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform_time.h │ │ │ │ ├── platform_util.h │ │ │ │ ├── poly1305.h │ │ │ │ ├── private_access.h │ │ │ │ ├── ripemd160.h │ │ │ │ ├── rsa.h │ │ │ │ ├── sha1.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sha3.h │ │ │ │ ├── sha512.h │ │ │ │ └── threading.h │ │ └── library │ │ │ ├── aes.c │ │ │ ├── alignment.h │ │ │ ├── asn1parse.c │ │ │ ├── asn1write.c │ │ │ ├── bignum.c │ │ │ ├── bignum_core.c │ │ │ ├── bignum_core.h │ │ │ ├── bignum_internal.h │ │ │ ├── bignum_mod.h │ │ │ ├── bn_mul.h │ │ │ ├── chacha20.c │ │ │ ├── chachapoly.c │ │ │ ├── cipher.c │ │ │ ├── cipher_invasive.h │ │ │ ├── cipher_wrap.c │ │ │ ├── cipher_wrap.h │ │ │ ├── common.h │ │ │ ├── constant_time.c │ │ │ ├── constant_time_impl.h │ │ │ ├── constant_time_internal.h │ │ │ ├── ctr.h │ │ │ ├── dhm.c │ │ │ ├── ecdh.c │ │ │ ├── ecp.c │ │ │ ├── ecp_curves.c │ │ │ ├── ecp_internal_alt.h │ │ │ ├── ecp_invasive.h │ │ │ ├── gcm.c │ │ │ ├── hmac_drbg.c │ │ │ ├── md.c │ │ │ ├── md5.c │ │ │ ├── md_wrap.h │ │ │ ├── oid.c │ │ │ ├── platform.c │ │ │ ├── platform_util.c │ │ │ ├── poly1305.c │ │ │ ├── ripemd160.c │ │ │ ├── rsa.c │ │ │ ├── rsa_alt_helpers.c │ │ │ ├── rsa_alt_helpers.h │ │ │ ├── rsa_internal.h │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ └── sha512.c │ ├── mod-crypt.c │ ├── tests │ │ ├── adler32.test.r │ │ ├── aes.test.r │ │ ├── crc32.test.r │ │ ├── dh.test.r │ │ ├── ecc.test.r │ │ ├── md5.test.r │ │ ├── rsa.test.r │ │ ├── sha1.test.r │ │ └── sha256.test.r │ └── tf_snprintf.c ├── debugger │ ├── README.md │ ├── ext-debugger-init.r │ ├── make-spec.r │ └── mod-debugger.c ├── dns │ ├── README.md │ ├── ext-dns-init.r │ ├── make-spec.r │ ├── mod-dns.c │ └── tests │ │ └── dns.test.r ├── environment │ ├── README.md │ ├── env-posix.c │ ├── env-windows.c │ ├── environment.h │ ├── ext-environment-init.r │ ├── make-spec.r │ └── mod-environment.c ├── filesystem │ ├── README.md │ ├── ext-filesystem-init.r │ ├── fcntl-patch.c │ ├── file-posix.c │ ├── file-req.h │ ├── libuv │ │ ├── include │ │ │ ├── uv.h │ │ │ └── uv │ │ │ │ ├── aix.h │ │ │ │ ├── bsd.h │ │ │ │ ├── darwin.h │ │ │ │ ├── errno.h │ │ │ │ ├── linux.h │ │ │ │ ├── os390.h │ │ │ │ ├── posix.h │ │ │ │ ├── sunos.h │ │ │ │ ├── threadpool.h │ │ │ │ ├── tree.h │ │ │ │ ├── unix.h │ │ │ │ ├── version.h │ │ │ │ └── win.h │ │ ├── src │ │ │ ├── fs-poll.c │ │ │ ├── heap-inl.h │ │ │ ├── idna.c │ │ │ ├── idna.h │ │ │ ├── inet.c │ │ │ ├── queue.h │ │ │ ├── random.c │ │ │ ├── strscpy.c │ │ │ ├── strscpy.h │ │ │ ├── strtok.c │ │ │ ├── strtok.h │ │ │ ├── thread-common.c │ │ │ ├── threadpool.c │ │ │ ├── timer.c │ │ │ ├── unix │ │ │ │ ├── aix-common.c │ │ │ │ ├── aix.c │ │ │ │ ├── async.c │ │ │ │ ├── bsd-ifaddrs.c │ │ │ │ ├── bsd-proctitle.c │ │ │ │ ├── core.c │ │ │ │ ├── cygwin.c │ │ │ │ ├── darwin-proctitle.c │ │ │ │ ├── darwin-stub.h │ │ │ │ ├── darwin-syscalls.h │ │ │ │ ├── darwin.c │ │ │ │ ├── dl.c │ │ │ │ ├── freebsd.c │ │ │ │ ├── fs.c │ │ │ │ ├── fsevents.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── haiku.c │ │ │ │ ├── hurd.c │ │ │ │ ├── ibmi.c │ │ │ │ ├── internal.h │ │ │ │ ├── kqueue.c │ │ │ │ ├── linux.c │ │ │ │ ├── loop-watcher.c │ │ │ │ ├── loop.c │ │ │ │ ├── netbsd.c │ │ │ │ ├── no-fsevents.c │ │ │ │ ├── no-proctitle.c │ │ │ │ ├── openbsd.c │ │ │ │ ├── os390-proctitle.c │ │ │ │ ├── os390-syscalls.c │ │ │ │ ├── os390-syscalls.h │ │ │ │ ├── os390.c │ │ │ │ ├── pipe.c │ │ │ │ ├── poll.c │ │ │ │ ├── posix-hrtime.c │ │ │ │ ├── posix-poll.c │ │ │ │ ├── process.c │ │ │ │ ├── procfs-exepath.c │ │ │ │ ├── proctitle.c │ │ │ │ ├── qnx.c │ │ │ │ ├── random-devurandom.c │ │ │ │ ├── random-getentropy.c │ │ │ │ ├── random-getrandom.c │ │ │ │ ├── random-sysctl-linux.c │ │ │ │ ├── signal.c │ │ │ │ ├── stream.c │ │ │ │ ├── sunos.c │ │ │ │ ├── sysinfo-loadavg.c │ │ │ │ ├── sysinfo-memory.c │ │ │ │ ├── tcp.c │ │ │ │ ├── thread.c │ │ │ │ ├── tty.c │ │ │ │ └── udp.c │ │ │ ├── uv-common.c │ │ │ ├── uv-common.h │ │ │ ├── uv-data-getter-setters.c │ │ │ ├── version.c │ │ │ └── win │ │ │ │ ├── async.c │ │ │ │ ├── atomicops-inl.h │ │ │ │ ├── core.c │ │ │ │ ├── detect-wakeup.c │ │ │ │ ├── dl.c │ │ │ │ ├── error.c │ │ │ │ ├── fs-event.c │ │ │ │ ├── fs-fd-hash-inl.h │ │ │ │ ├── fs.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── handle-inl.h │ │ │ │ ├── handle.c │ │ │ │ ├── internal.h │ │ │ │ ├── loop-watcher.c │ │ │ │ ├── pipe.c │ │ │ │ ├── poll.c │ │ │ │ ├── process-stdio.c │ │ │ │ ├── process.c │ │ │ │ ├── req-inl.h │ │ │ │ ├── signal.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── stream-inl.h │ │ │ │ ├── stream.c │ │ │ │ ├── tcp.c │ │ │ │ ├── thread.c │ │ │ │ ├── tty.c │ │ │ │ ├── udp.c │ │ │ │ ├── util.c │ │ │ │ ├── winapi.c │ │ │ │ ├── winapi.h │ │ │ │ ├── winsock.c │ │ │ │ └── winsock.h │ │ └── uv_win_longpath.manifest │ ├── make-spec.r │ ├── mod-filesystem.c │ ├── p-dir.c │ └── p-file.c ├── javascript │ ├── LICENSE.txt │ ├── README.md │ ├── asyncify-blacklist.r │ ├── docs │ │ └── template.html │ ├── ext-javascript-init.r │ ├── load-r3.js │ ├── make-spec.r │ ├── mod-javascript.c │ ├── tests │ │ └── toplevel.test.js │ └── tools │ │ └── prep-libr3-js.r ├── locale │ ├── ISO-639-2_utf-8.txt │ ├── ext-locale-init.r │ ├── iso3166.r │ ├── iso3166.txt │ ├── iso639.r │ ├── make-spec.r │ └── mod-locale.c ├── network │ ├── README.md │ ├── ext-network-init.r │ ├── make-spec.r │ ├── mod-network.c │ └── reb-net.h ├── process │ ├── README.md │ ├── call-posix.c │ ├── call-windows.c │ ├── ext-process-init.r │ ├── make-spec.r │ ├── mod-process.c │ ├── process-posix.c │ ├── reb-process.h │ └── tests │ │ ├── call.test.r │ │ └── print.r ├── stdio │ ├── README.md │ ├── ext-stdio-init.r │ ├── make-spec.r │ ├── mod-stdio.c │ ├── p-stdio.c │ ├── readline-posix.c │ ├── readline-windows.c │ ├── readline.h │ ├── stdio-posix.c │ └── stdio-windows.c ├── tcc │ ├── README.md │ ├── ext-tcc-init.r │ ├── make-spec.r │ ├── mod-tcc.c │ ├── tests │ │ ├── call-librebol.r │ │ ├── fib.r │ │ └── tcc-to-disk.r │ └── tools │ │ ├── build-libtcc-helper.sh │ │ ├── encap-tcc-resources.r │ │ └── prep-libr3-tcc.r ├── time │ ├── README.md │ ├── ext-time-init.r │ ├── make-spec.r │ ├── mod-time.c │ ├── time-posix.c │ └── time-windows.c ├── utf │ ├── README.md │ ├── ext-utf-init.r │ ├── make-spec.r │ └── mod-utf.c ├── uuid │ ├── ext-uuid-init.r │ ├── libuuid │ │ ├── config.h │ │ ├── gen_uuid.c │ │ ├── nls.h │ │ ├── pack.c │ │ ├── randutils.c │ │ ├── randutils.h │ │ ├── unpack.c │ │ ├── uuid.h │ │ ├── uuidP.h │ │ └── uuidd.h │ ├── make-libuuid.r │ ├── make-spec.r │ └── mod-uuid.c └── view │ ├── README.md │ ├── ext-view-init.r │ ├── make-spec.r │ └── mod-view.c ├── make.r ├── make.sh ├── prebuilt └── README.md ├── ren-c-logo.png ├── scripts ├── encap.r ├── latest-of.r ├── prot-http.r ├── prot-tls.r └── unzip.r ├── src ├── core │ ├── api │ │ ├── a-constants.c │ │ ├── a-globals.c │ │ └── a-lib.c │ ├── boot │ │ └── b-init.c │ ├── c-bind.c │ ├── c-context.c │ ├── c-do.c │ ├── c-error.c │ ├── c-function.c │ ├── c-path.c │ ├── c-signal.c │ ├── c-state.c │ ├── c-value.c │ ├── c-word.c │ ├── diagnostics │ │ ├── d-backtrace.c │ │ ├── d-crash.c │ │ ├── d-dump.c │ │ ├── d-eval.c │ │ ├── d-gc.c │ │ ├── d-print.c │ │ ├── d-stack.c │ │ ├── d-stats.c │ │ ├── d-test.c │ │ └── d-trace.c │ ├── evaluator │ │ ├── c-action.c │ │ ├── c-eval.c │ │ ├── c-step.c │ │ └── c-trampoline.c │ ├── f-blocks.c │ ├── f-dtoa.c │ ├── f-enbase.c │ ├── f-extension.c │ ├── f-int.c │ ├── f-math.c │ ├── f-modify.c │ ├── f-qsort.c │ ├── f-random.c │ ├── f-round.c │ ├── f-series.c │ ├── f-stubs.c │ ├── functionals │ │ ├── README.md │ │ ├── c-adapt.c │ │ ├── c-arrow.c │ │ ├── c-augment.c │ │ ├── c-chain.c │ │ ├── c-does.c │ │ ├── c-enclose.c │ │ ├── c-hijack.c │ │ ├── c-lambda.c │ │ ├── c-macro.c │ │ ├── c-native.c │ │ ├── c-oneshot.c │ │ ├── c-reframer.c │ │ ├── c-reorder.c │ │ ├── c-specialize.c │ │ ├── c-typechecker.c │ │ ├── c-yielder.c │ │ └── n-function.c │ ├── lexer │ │ ├── l-scan.c │ │ └── l-types.c │ ├── memory │ │ ├── m-gc.c │ │ ├── m-pools.c │ │ ├── m-series.c │ │ └── m-stacks.c │ ├── natives │ │ ├── n-bitwise.c │ │ ├── n-compose.c │ │ ├── n-control.c │ │ ├── n-data.c │ │ ├── n-do.c │ │ ├── n-error.c │ │ ├── n-get-set.c │ │ ├── n-ghost.c │ │ ├── n-io.c │ │ ├── n-loop.c │ │ ├── n-make.c │ │ ├── n-math.c │ │ ├── n-port.c │ │ ├── n-protect.c │ │ ├── n-reduce.c │ │ ├── n-series.c │ │ ├── n-sets.c │ │ ├── n-strings.c │ │ ├── n-system.c │ │ └── n-transcode.c │ ├── parse │ │ ├── c-combinator.c │ │ └── n-parse3.c │ ├── s-cases.c │ ├── s-crc.c │ ├── s-find.c │ ├── s-make.c │ ├── s-mold.c │ ├── s-ops.c │ ├── types │ │ ├── t-binary.c │ │ ├── t-bitset.c │ │ ├── t-blank.c │ │ ├── t-block.c │ │ ├── t-char.c │ │ ├── t-comma.c │ │ ├── t-datatype.c │ │ ├── t-date.c │ │ ├── t-decimal.c │ │ ├── t-integer.c │ │ ├── t-logic.c │ │ ├── t-map.c │ │ ├── t-object.c │ │ ├── t-pair.c │ │ ├── t-port.c │ │ ├── t-quoted.c │ │ ├── t-string.c │ │ ├── t-time.c │ │ ├── t-tuple.c │ │ ├── t-typeset.c │ │ ├── t-varargs.c │ │ └── t-word.c │ ├── u-compress.c │ └── u-zlib.c ├── include │ ├── README.md │ ├── assert-fix.h │ ├── bsd-qsort_r.h │ ├── c-extras.h │ ├── casts │ │ ├── README.md │ │ ├── cast-base.hpp │ │ ├── cast-cells.hpp │ │ ├── cast-misc.hpp │ │ └── cast-stubs.hpp │ ├── cells │ │ ├── cell-array.h │ │ ├── cell-binary.h │ │ ├── cell-bitset.h │ │ ├── cell-comma.h │ │ ├── cell-context.h │ │ ├── cell-datatype.h │ │ ├── cell-decimal.h │ │ ├── cell-error.h │ │ ├── cell-frame.h │ │ ├── cell-handle.h │ │ ├── cell-integer.h │ │ ├── cell-logic.h │ │ ├── cell-map.h │ │ ├── cell-nulled.h │ │ ├── cell-pair.h │ │ ├── cell-parameter.h │ │ ├── cell-quoted.h │ │ ├── cell-rune.h │ │ ├── cell-sequence.h │ │ ├── cell-series.h │ │ ├── cell-sigil.h │ │ ├── cell-string.h │ │ ├── cell-time.h │ │ ├── cell-varargs.h │ │ ├── cell-void.h │ │ └── cell-word.h │ ├── debugbreak.h │ ├── enums │ │ ├── README.md │ │ ├── enum-flavor.h │ │ ├── enum-symid.h │ │ ├── enum-types.h │ │ └── enum-typesets.h │ ├── executors │ │ ├── exec-action.h │ │ ├── exec-eval.h │ │ └── exec-scan.h │ ├── mem-pools.h │ ├── needful │ │ ├── README.md │ │ ├── cplusplus │ │ │ ├── cplusplus-needfuls.hpp │ │ │ ├── needful-asserts.hpp │ │ │ ├── needful-casts.hpp │ │ │ ├── needful-const.hpp │ │ │ ├── needful-corruption.hpp │ │ │ ├── needful-ensure.hpp │ │ │ ├── needful-option.hpp │ │ │ ├── needful-result.hpp │ │ │ ├── needful-sinks.hpp │ │ │ ├── needful-utilities.hpp │ │ │ └── needful-wrapping.hpp │ │ ├── docs │ │ │ └── needful-result.md │ │ ├── needful.h │ │ └── tests │ │ │ ├── all-needful-tests.hpp │ │ │ ├── test-needful-casts.hpp │ │ │ ├── test-needful-const.hpp │ │ │ └── test-needful-option.hpp │ ├── reb-config.h │ ├── reb-defs.h │ ├── reb-dtoa.h │ ├── structs │ │ ├── README.md │ │ ├── struct-array.h │ │ ├── struct-base.h │ │ ├── struct-binary.h │ │ ├── struct-bounce.h │ │ ├── struct-cell.h │ │ ├── struct-char.h │ │ ├── struct-context.h │ │ ├── struct-details.h │ │ ├── struct-feed.h │ │ ├── struct-flex.h │ │ ├── struct-level.h │ │ ├── struct-map.h │ │ ├── struct-mold.h │ │ ├── struct-pairing.h │ │ ├── struct-patch.h │ │ ├── struct-sea.h │ │ ├── struct-source.h │ │ ├── struct-state.h │ │ ├── struct-string.h │ │ ├── struct-stub.h │ │ ├── struct-value.h │ │ └── struct-varlist.h │ ├── stubs │ │ ├── stub-action.h │ │ ├── stub-api.h │ │ ├── stub-array.h │ │ ├── stub-binary.h │ │ ├── stub-context.h │ │ ├── stub-flex.h │ │ ├── stub-map.h │ │ ├── stub-sea.h │ │ ├── stub-source.h │ │ ├── stub-strand.h │ │ ├── stub-symbol.h │ │ ├── stub-use.h │ │ └── stub-varlist.h │ ├── sys-base.h │ ├── sys-bind.h │ ├── sys-bounce.h │ ├── sys-cell.h │ ├── sys-continuation.h │ ├── sys-core.h │ ├── sys-crash.h │ ├── sys-datastack.h │ ├── sys-dec-to-char.h │ ├── sys-eval.h │ ├── sys-ext.h │ ├── sys-feed.h │ ├── sys-flags.h │ ├── sys-gc.h │ ├── sys-globals.h │ ├── sys-hooks.h │ ├── sys-int-funcs.h │ ├── sys-intrinsic.h │ ├── sys-isotope.h │ ├── sys-level.h │ ├── sys-lib.h │ ├── sys-mold.h │ ├── sys-pick.h │ ├── sys-probe.h │ ├── sys-protect.h │ ├── sys-recover.h │ ├── sys-scan.h │ ├── sys-stub.h │ ├── sys-throw.h │ ├── sys-tick.h │ ├── sys-track.h │ ├── sys-trampoline.h │ ├── sys-utf8.h │ └── sys-zlib.h ├── main │ ├── README.md │ ├── main-startup.r │ ├── main.c │ └── prep-main.r ├── mezz │ ├── base-constants.r │ ├── base-defs.r │ ├── base-files.r │ ├── base-funcs.r │ ├── base-series.r │ ├── boot-files.r │ ├── mezz-colors.r │ ├── mezz-control.r │ ├── mezz-debug.r │ ├── mezz-dump.r │ ├── mezz-files.r │ ├── mezz-help.r │ ├── mezz-legacy.r │ ├── mezz-math.r │ ├── mezz-save.r │ ├── mezz-series.r │ ├── mezz-shell.r │ ├── mezz-types.r │ ├── sys-base.r │ ├── sys-codec.r │ ├── sys-load.r │ ├── sys-ports.r │ ├── uparse-extras.r │ └── uparse.r └── specs │ ├── README.md │ ├── errors.r │ ├── ext-words.r │ ├── generics.r │ ├── lib-words.r │ ├── symbols.r │ ├── sysobj.r │ ├── task.r │ ├── types.r │ └── version.r ├── tests ├── LICENSE ├── README.md ├── api │ └── librebol.test.r ├── comparison │ ├── equalq.test.r │ ├── lesserq.test.r │ ├── maximum-of.test.r │ ├── sameq.test.r │ ├── strict-equalq.test.r │ └── strict-not-equalq.test.r ├── context │ ├── bind.test.r │ ├── bindq.test.r │ ├── boundq.test.r │ ├── collect-words.test.r │ ├── construct.test.r │ ├── let.test.r │ ├── resolve.test.r │ ├── set.test.r │ ├── unset.test.r │ ├── use.test.r │ ├── valueq.test.r │ ├── virtual-bind.test.r │ └── wrap.test.r ├── control │ ├── all.test.r │ ├── any.test.r │ ├── case.test.r │ ├── catch.test.r │ ├── compose.test.r │ ├── default.test.r │ ├── destructure.test.r │ ├── do.test.r │ ├── either.test.r │ ├── else.test.r │ ├── examples │ │ └── switch2.control.test.r │ ├── halt.test.r │ ├── if.test.r │ ├── match.test.r │ ├── maybe.test.r │ ├── quit.test.r │ ├── reduce.test.r │ ├── reeval.test.r │ ├── switch.test.r │ ├── typecheck.test.r │ ├── unless.test.r │ └── wait.test.r ├── convert │ ├── as-binary.test.r │ ├── as-string.test.r │ ├── enbin.test.r │ ├── encode.test.r │ ├── mold.test.r │ ├── to-hex.test.r │ └── to.test.r ├── core-tests.r ├── cypress │ ├── README.md │ ├── cypress.config.js │ ├── e2e │ │ └── README.md │ ├── fixtures │ │ └── example.json │ ├── package.json │ └── support │ │ ├── commands.js │ │ └── e2e.js ├── datatypes │ ├── action.test.r │ ├── binary.test.r │ ├── bitset.test.r │ ├── blank.test.r │ ├── block.test.r │ ├── chain.test.r │ ├── char.test.r │ ├── comma.test.r │ ├── datatype.test.r │ ├── date.test.r │ ├── decimal.test.r │ ├── dictionary.test.r │ ├── email.test.r │ ├── error.test.r │ ├── fence.test.r │ ├── file.test.r │ ├── frame.test.r │ ├── get-block.test.r │ ├── get-group.test.r │ ├── get-path.test.r │ ├── get-word.test.r │ ├── hash.test.r │ ├── integer.test.r │ ├── lit-path.test.r │ ├── lit-word.test.r │ ├── logic.test.r │ ├── meta-block.test.r │ ├── meta-group.test.r │ ├── meta-path.test.r │ ├── meta-word.test.r │ ├── meta.test.r │ ├── module.test.r │ ├── money-math.test.r │ ├── money.test.r │ ├── null.test.r │ ├── object.test.r │ ├── pair.test.r │ ├── parameter.test.r │ ├── paren.test.r │ ├── path.test.r │ ├── percent.test.r │ ├── port.test.r │ ├── quasi.test.r │ ├── quoted.test.r │ ├── refinement.test.r │ ├── rune.test.r │ ├── set-block.test.r │ ├── set-group.test.r │ ├── set-path.test.r │ ├── set-word.test.r │ ├── sigil.test.r │ ├── string.test.r │ ├── tag.test.r │ ├── the.test.r │ ├── time.test.r │ ├── tuple.test.r │ ├── url.test.r │ ├── varargs.test.r │ └── word.test.r ├── define │ └── func.test.r ├── errors │ ├── disarm.test.r │ ├── except.test.r │ ├── require.test.r │ ├── rescue.test.r │ └── trap.test.r ├── examples │ ├── circled.test.r │ ├── flow.test.r │ ├── giulio-generate.test.r │ ├── giulio-read-lines.test.r │ ├── n-queens.test.r │ ├── prime-factors.test.r │ └── sudoku-solver.test.r ├── file │ ├── clean-path.test.r │ ├── existsq.test.r │ ├── file-port.test.r │ ├── file-typeq.test.r │ ├── make-dir.test.r │ ├── open.test.r │ └── split-path.test.r ├── fixtures │ ├── corrupt-zdeflated.bin │ ├── rebol-logo.bmp │ ├── rebol-logo.gif │ ├── rebol-logo.jpg │ ├── rebol-logo.png │ ├── test.docx │ ├── umlauts-utf16be.txt │ ├── umlauts-utf16le.txt │ ├── umlauts-utf32be.txt │ ├── umlauts-utf32le.txt │ ├── umlauts-utf8.txt │ ├── umlauts-utf8bom.txt │ └── utf8-plain-text.txt ├── flags.r ├── functions │ ├── adapt.test.r │ ├── apply.test.r │ ├── augment.test.r │ ├── cascade.test.r │ ├── does.test.r │ ├── enclose.test.r │ ├── examples │ │ └── onlify.function.test.r │ ├── frame.test.r │ ├── function.test.r │ ├── generator.test.r │ ├── hijack.test.r │ ├── infix.test.r │ ├── lambda.test.r │ ├── let.test.r │ ├── literal.test.r │ ├── macro.test.r │ ├── multi.test.r │ ├── native.test.r │ ├── oneshot.test.r │ ├── pointfree.test.r │ ├── predicate.test.r │ ├── reframer.test.r │ ├── reorder.test.r │ ├── return.test.r │ ├── shove.test.r │ ├── specialize.test.r │ ├── typechecker.test.r │ ├── unwind.test.r │ └── yielder.test.r ├── invisibles │ ├── bar-bar-bar.test.r │ ├── bar-bar.test.r │ ├── comment.test.r │ ├── elide.test.r │ ├── invisible.test.r │ ├── once-bar.test.r │ └── star-star.test.r ├── log-diff.r ├── log-filter.r ├── loops │ ├── attempt.test.r │ ├── break.test.r │ ├── cfor.test.r │ ├── continue.test.r │ ├── count-up.test.r │ ├── cycle.test.r │ ├── every.test.r │ ├── examples │ │ ├── for-both.loops.test.r │ │ └── for-parallel.loops.test.r │ ├── for-next.test.r │ ├── for.test.r │ ├── insist.test.r │ ├── iterate-skip.test.r │ ├── iterate.test.r │ ├── map.test.r │ ├── remove-each.test.r │ ├── repeat.test.r │ └── while.test.r ├── math │ ├── absolute.test.r │ ├── add.test.r │ ├── and.test.r │ ├── arcsine.test.r │ ├── arctangent.test.r │ ├── complement.test.r │ ├── cosine.test.r │ ├── difference.test.r │ ├── divide.test.r │ ├── evenq.test.r │ ├── exp.test.r │ ├── log-10.test.r │ ├── log-2.test.r │ ├── log-e.test.r │ ├── math.test.r │ ├── mod.test.r │ ├── multiply.test.r │ ├── negate.test.r │ ├── negativeq.test.r │ ├── not.test.r │ ├── positiveq.test.r │ ├── power.test.r │ ├── random.test.r │ ├── remainder.test.r │ ├── round.test.r │ ├── shift.test.r │ ├── signq.test.r │ ├── sine.test.r │ ├── square-root.test.r │ ├── subtract.test.r │ ├── tangent.test.r │ └── zeroq.test.r ├── misc │ ├── assert.test.r │ ├── help.test.r │ ├── pack-old.test.r │ ├── panic-script.r │ ├── panic.test.r │ └── quit-script.r ├── network │ └── http.test.r ├── parse │ ├── README.md │ ├── examples │ │ ├── argtest.parse.test.r │ │ ├── breaker.parse.test.r │ │ ├── bridge-notation.parse.test.r │ │ ├── countify.parse.test.r │ │ ├── evaluate.parse.test.r │ │ ├── expression.parse.test.r │ │ ├── function3.parse.test.r │ │ ├── html-parser.parse.test.r │ │ ├── maxmatch.parse.test.r │ │ ├── nanbnc.parse.test.r │ │ ├── red-replace.parse.test.r │ │ ├── reword.parse.test.r │ │ ├── split.parse.test.r │ │ ├── topaz-expression.parse.test.r │ │ ├── tracked-word.parse.test.r │ │ ├── trim.parse.test.r │ │ ├── ugly-parse.parse.test.r │ │ └── validate-enclosure.parse.test.r │ ├── parse-match.test.r │ ├── parse-thru.test.r │ ├── parse.accept.test.r │ ├── parse.accumulate.test.r │ ├── parse.across.test.r │ ├── parse.action.test.r │ ├── parse.ahead.test.r │ ├── parse.any.test.r │ ├── parse.between.test.r │ ├── parse.binary.test.r │ ├── parse.bitset.test.r │ ├── parse.blank.test.r │ ├── parse.block.test.r │ ├── parse.break.test.r │ ├── parse.change.test.r │ ├── parse.collect.test.r │ ├── parse.cond.test.r │ ├── parse.datatype.test.r │ ├── parse.elide.test.r │ ├── parse.ellipsis.test.r │ ├── parse.further.test.r │ ├── parse.furthest.test.r │ ├── parse.gather.test.r │ ├── parse.get-group.test.r │ ├── parse.group.test.r │ ├── parse.insert.test.r │ ├── parse.into.test.r │ ├── parse.just.test.r │ ├── parse.let.test.r │ ├── parse.literal.test.r │ ├── parse.match.test.r │ ├── parse.maybe.test.r │ ├── parse.measure.test.r │ ├── parse.meta-xxx.test.r │ ├── parse.not.test.r │ ├── parse.one.test.r │ ├── parse.optional.test.r │ ├── parse.path.test.r │ ├── parse.phase.test.r │ ├── parse.quasi.test.r │ ├── parse.quoted.test.r │ ├── parse.remove.test.r │ ├── parse.repeat.test.r │ ├── parse.rune.test.r │ ├── parse.seek.test.r │ ├── parse.set-group.test.r │ ├── parse.set-word.test.r │ ├── parse.skip.test.r │ ├── parse.some.test.r │ ├── parse.stop.test.r │ ├── parse.subparse.test.r │ ├── parse.tag-end.test.r │ ├── parse.tag-here.test.r │ ├── parse.tag-index.test.r │ ├── parse.tally.test.r │ ├── parse.test.r │ ├── parse.text.test.r │ ├── parse.the-xxx.test.r │ ├── parse.thru.test.r │ ├── parse.to.test.r │ ├── parse.validate.test.r │ ├── parse.veto.test.r │ ├── parse.void.test.r │ ├── parse.while.test.r │ ├── parse.word.test.r │ └── parse3.test.r ├── reflectors │ └── body-of.test.r ├── run-tests.r ├── scanner │ ├── load.test.r │ ├── path-tuple.test.r │ └── source-comment.test.r ├── secure │ ├── const.test.r │ ├── protect.test.r │ └── unprotect.test.r ├── series │ ├── append.test.r │ ├── as.test.r │ ├── at.test.r │ ├── back.test.r │ ├── change.test.r │ ├── charset.test.r │ ├── clear.test.r │ ├── collect.test.r │ ├── copy.test.r │ ├── delimit.test.r │ ├── emptyq.test.r │ ├── envelop.test.r │ ├── exclude.test.r │ ├── extract.test.r │ ├── find.test.r │ ├── free.test.r │ ├── glom.test.r │ ├── indexq.test.r │ ├── insert.test.r │ ├── intersect.test.r │ ├── join.test.r │ ├── last.test.r │ ├── lengthq.test.r │ ├── next.test.r │ ├── ordinals.test.r │ ├── pick.test.r │ ├── poke.test.r │ ├── remove.test.r │ ├── replace.test.r │ ├── reverse.test.r │ ├── reword.test.r │ ├── select.test.r │ ├── skip.test.r │ ├── sort.test.r │ ├── split.test.r │ ├── tailq.test.r │ ├── trim.test.r │ ├── union.test.r │ └── unique.test.r ├── source │ ├── analysis.test.r │ ├── source-tools.r │ └── text-lines.test.r ├── string │ ├── codepoint.test.r │ ├── compress.test.r │ ├── decode.test.r │ ├── decompress.test.r │ ├── dehex.test.r │ ├── deline.test.r │ ├── encode.test.r │ ├── interpolate.test.r │ ├── transcode.test.r │ └── utf8.test.r ├── system │ ├── file.test.r │ ├── gc.test.r │ └── system.test.r ├── test-framework.r └── test-parsing.r └── tools ├── README.md ├── bash ├── README.md ├── download.sh ├── fetch-prebuilt.sh ├── identify-os.sh └── log.sh ├── bootstrap-shim.r ├── c-lexicals.r ├── cflags-map.r ├── common-emitter.r ├── common-parsers.r ├── common.r ├── file-base.r ├── import-shim.r ├── make-boot.r ├── make-extensions-table.r ├── make-headers.r ├── make-librebol.r ├── make-natives.r ├── make-types.r ├── make-zlib.r ├── native-emitters.r ├── parsing-tools.r ├── platforms.r ├── prep-extension.r ├── read-deep.r ├── rebmake.r └── text-lines.r /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/divert-mandb/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/actions/divert-mandb/action.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/android-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/android-build.yml -------------------------------------------------------------------------------- /.github/workflows/linux-gcc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/linux-gcc-build.yml -------------------------------------------------------------------------------- /.github/workflows/linux-tcc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/linux-tcc-build.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/wasi-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/wasi-build.yml -------------------------------------------------------------------------------- /.github/workflows/web-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/web-build.yml -------------------------------------------------------------------------------- /.github/workflows/windows-mingw-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/windows-mingw-build.yml -------------------------------------------------------------------------------- /.github/workflows/windows-msvc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.github/workflows/windows-msvc-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/README.md -------------------------------------------------------------------------------- /configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/README.md -------------------------------------------------------------------------------- /configs/android-build-on-arm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/android-build-on-arm.r -------------------------------------------------------------------------------- /configs/android-common.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/android-common.r -------------------------------------------------------------------------------- /configs/android-cross-compiled.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/android-cross-compiled.r -------------------------------------------------------------------------------- /configs/bootstrap.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/bootstrap.r -------------------------------------------------------------------------------- /configs/default-config.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/default-config.r -------------------------------------------------------------------------------- /configs/emscripten.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/emscripten.r -------------------------------------------------------------------------------- /configs/generic.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/generic.r -------------------------------------------------------------------------------- /configs/llvm-bc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/llvm-bc.r -------------------------------------------------------------------------------- /configs/mingw-x64-c++.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/mingw-x64-c++.r -------------------------------------------------------------------------------- /configs/mingw-x64.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/mingw-x64.r -------------------------------------------------------------------------------- /configs/mingw-x86.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/mingw-x86.r -------------------------------------------------------------------------------- /configs/vs2019-x64.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/vs2019-x64.r -------------------------------------------------------------------------------- /configs/vs2019-x86.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/vs2019-x86.r -------------------------------------------------------------------------------- /configs/wasi.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/configs/wasi.r -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/clipboard/README.md -------------------------------------------------------------------------------- /extensions/clipboard/ext-clipboard-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/clipboard/ext-clipboard-init.r -------------------------------------------------------------------------------- /extensions/clipboard/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/clipboard/make-spec.r -------------------------------------------------------------------------------- /extensions/clipboard/mod-clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/clipboard/mod-clipboard.c -------------------------------------------------------------------------------- /extensions/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/console/README.md -------------------------------------------------------------------------------- /extensions/console/ext-console-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/console/ext-console-init.r -------------------------------------------------------------------------------- /extensions/console/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/console/make-spec.r -------------------------------------------------------------------------------- /extensions/console/mod-console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/console/mod-console.c -------------------------------------------------------------------------------- /extensions/crypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/README.md -------------------------------------------------------------------------------- /extensions/crypt/ext-crypt-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/ext-crypt-init.r -------------------------------------------------------------------------------- /extensions/crypt/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/make-spec.r -------------------------------------------------------------------------------- /extensions/crypt/mbedtls-rebol-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls-rebol-config.h -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/aes.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/bignum.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/bn_mul.h -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/cipher.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/common.h -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/ctr.h -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/dhm.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/ecdh.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/ecp.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/gcm.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/md.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/md5.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/oid.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/rsa.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/sha1.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/sha256.c -------------------------------------------------------------------------------- /extensions/crypt/mbedtls/library/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mbedtls/library/sha512.c -------------------------------------------------------------------------------- /extensions/crypt/mod-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/mod-crypt.c -------------------------------------------------------------------------------- /extensions/crypt/tests/adler32.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/adler32.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/aes.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/aes.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/crc32.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/crc32.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/dh.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/dh.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/ecc.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/ecc.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/md5.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/md5.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/rsa.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/rsa.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/sha1.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/sha1.test.r -------------------------------------------------------------------------------- /extensions/crypt/tests/sha256.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tests/sha256.test.r -------------------------------------------------------------------------------- /extensions/crypt/tf_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/crypt/tf_snprintf.c -------------------------------------------------------------------------------- /extensions/debugger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/debugger/README.md -------------------------------------------------------------------------------- /extensions/debugger/ext-debugger-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/debugger/ext-debugger-init.r -------------------------------------------------------------------------------- /extensions/debugger/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/debugger/make-spec.r -------------------------------------------------------------------------------- /extensions/debugger/mod-debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/debugger/mod-debugger.c -------------------------------------------------------------------------------- /extensions/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/dns/README.md -------------------------------------------------------------------------------- /extensions/dns/ext-dns-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/dns/ext-dns-init.r -------------------------------------------------------------------------------- /extensions/dns/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/dns/make-spec.r -------------------------------------------------------------------------------- /extensions/dns/mod-dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/dns/mod-dns.c -------------------------------------------------------------------------------- /extensions/dns/tests/dns.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/dns/tests/dns.test.r -------------------------------------------------------------------------------- /extensions/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/README.md -------------------------------------------------------------------------------- /extensions/environment/env-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/env-posix.c -------------------------------------------------------------------------------- /extensions/environment/env-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/env-windows.c -------------------------------------------------------------------------------- /extensions/environment/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/environment.h -------------------------------------------------------------------------------- /extensions/environment/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/make-spec.r -------------------------------------------------------------------------------- /extensions/environment/mod-environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/environment/mod-environment.c -------------------------------------------------------------------------------- /extensions/filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/README.md -------------------------------------------------------------------------------- /extensions/filesystem/fcntl-patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/fcntl-patch.c -------------------------------------------------------------------------------- /extensions/filesystem/file-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/file-posix.c -------------------------------------------------------------------------------- /extensions/filesystem/file-req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/file-req.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/include/uv.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/fs-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/fs-poll.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/idna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/idna.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/idna.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/inet.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/queue.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/random.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/strscpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/strscpy.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/strscpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/strscpy.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/strtok.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/strtok.h -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/timer.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/unix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/unix/dl.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/unix/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/unix/fs.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/version.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/win/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/win/dl.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/win/fs.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/win/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/win/tcp.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/win/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/win/tty.c -------------------------------------------------------------------------------- /extensions/filesystem/libuv/src/win/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/libuv/src/win/udp.c -------------------------------------------------------------------------------- /extensions/filesystem/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/make-spec.r -------------------------------------------------------------------------------- /extensions/filesystem/mod-filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/mod-filesystem.c -------------------------------------------------------------------------------- /extensions/filesystem/p-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/p-dir.c -------------------------------------------------------------------------------- /extensions/filesystem/p-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/filesystem/p-file.c -------------------------------------------------------------------------------- /extensions/javascript/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/LICENSE.txt -------------------------------------------------------------------------------- /extensions/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/README.md -------------------------------------------------------------------------------- /extensions/javascript/docs/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/docs/template.html -------------------------------------------------------------------------------- /extensions/javascript/load-r3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/load-r3.js -------------------------------------------------------------------------------- /extensions/javascript/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/make-spec.r -------------------------------------------------------------------------------- /extensions/javascript/mod-javascript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/javascript/mod-javascript.c -------------------------------------------------------------------------------- /extensions/locale/ISO-639-2_utf-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/ISO-639-2_utf-8.txt -------------------------------------------------------------------------------- /extensions/locale/ext-locale-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/ext-locale-init.r -------------------------------------------------------------------------------- /extensions/locale/iso3166.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/iso3166.r -------------------------------------------------------------------------------- /extensions/locale/iso3166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/iso3166.txt -------------------------------------------------------------------------------- /extensions/locale/iso639.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/iso639.r -------------------------------------------------------------------------------- /extensions/locale/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/make-spec.r -------------------------------------------------------------------------------- /extensions/locale/mod-locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/locale/mod-locale.c -------------------------------------------------------------------------------- /extensions/network/README.md: -------------------------------------------------------------------------------- 1 | ## Network Extension 2 | -------------------------------------------------------------------------------- /extensions/network/ext-network-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/network/ext-network-init.r -------------------------------------------------------------------------------- /extensions/network/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/network/make-spec.r -------------------------------------------------------------------------------- /extensions/network/mod-network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/network/mod-network.c -------------------------------------------------------------------------------- /extensions/network/reb-net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/network/reb-net.h -------------------------------------------------------------------------------- /extensions/process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/README.md -------------------------------------------------------------------------------- /extensions/process/call-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/call-posix.c -------------------------------------------------------------------------------- /extensions/process/call-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/call-windows.c -------------------------------------------------------------------------------- /extensions/process/ext-process-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/ext-process-init.r -------------------------------------------------------------------------------- /extensions/process/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/make-spec.r -------------------------------------------------------------------------------- /extensions/process/mod-process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/mod-process.c -------------------------------------------------------------------------------- /extensions/process/process-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/process-posix.c -------------------------------------------------------------------------------- /extensions/process/reb-process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/reb-process.h -------------------------------------------------------------------------------- /extensions/process/tests/call.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/tests/call.test.r -------------------------------------------------------------------------------- /extensions/process/tests/print.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/process/tests/print.r -------------------------------------------------------------------------------- /extensions/stdio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/README.md -------------------------------------------------------------------------------- /extensions/stdio/ext-stdio-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/ext-stdio-init.r -------------------------------------------------------------------------------- /extensions/stdio/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/make-spec.r -------------------------------------------------------------------------------- /extensions/stdio/mod-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/mod-stdio.c -------------------------------------------------------------------------------- /extensions/stdio/p-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/p-stdio.c -------------------------------------------------------------------------------- /extensions/stdio/readline-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/readline-posix.c -------------------------------------------------------------------------------- /extensions/stdio/readline-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/readline-windows.c -------------------------------------------------------------------------------- /extensions/stdio/readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/readline.h -------------------------------------------------------------------------------- /extensions/stdio/stdio-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/stdio-posix.c -------------------------------------------------------------------------------- /extensions/stdio/stdio-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/stdio/stdio-windows.c -------------------------------------------------------------------------------- /extensions/tcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/README.md -------------------------------------------------------------------------------- /extensions/tcc/ext-tcc-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/ext-tcc-init.r -------------------------------------------------------------------------------- /extensions/tcc/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/make-spec.r -------------------------------------------------------------------------------- /extensions/tcc/mod-tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/mod-tcc.c -------------------------------------------------------------------------------- /extensions/tcc/tests/call-librebol.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/tests/call-librebol.r -------------------------------------------------------------------------------- /extensions/tcc/tests/fib.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/tests/fib.r -------------------------------------------------------------------------------- /extensions/tcc/tests/tcc-to-disk.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/tests/tcc-to-disk.r -------------------------------------------------------------------------------- /extensions/tcc/tools/prep-libr3-tcc.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/tcc/tools/prep-libr3-tcc.r -------------------------------------------------------------------------------- /extensions/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/README.md -------------------------------------------------------------------------------- /extensions/time/ext-time-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/ext-time-init.r -------------------------------------------------------------------------------- /extensions/time/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/make-spec.r -------------------------------------------------------------------------------- /extensions/time/mod-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/mod-time.c -------------------------------------------------------------------------------- /extensions/time/time-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/time-posix.c -------------------------------------------------------------------------------- /extensions/time/time-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/time/time-windows.c -------------------------------------------------------------------------------- /extensions/utf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/utf/README.md -------------------------------------------------------------------------------- /extensions/utf/ext-utf-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/utf/ext-utf-init.r -------------------------------------------------------------------------------- /extensions/utf/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/utf/make-spec.r -------------------------------------------------------------------------------- /extensions/utf/mod-utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/utf/mod-utf.c -------------------------------------------------------------------------------- /extensions/uuid/ext-uuid-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/ext-uuid-init.r -------------------------------------------------------------------------------- /extensions/uuid/libuuid/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/config.h -------------------------------------------------------------------------------- /extensions/uuid/libuuid/gen_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/gen_uuid.c -------------------------------------------------------------------------------- /extensions/uuid/libuuid/nls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/nls.h -------------------------------------------------------------------------------- /extensions/uuid/libuuid/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/pack.c -------------------------------------------------------------------------------- /extensions/uuid/libuuid/randutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/randutils.c -------------------------------------------------------------------------------- /extensions/uuid/libuuid/randutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/randutils.h -------------------------------------------------------------------------------- /extensions/uuid/libuuid/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/unpack.c -------------------------------------------------------------------------------- /extensions/uuid/libuuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/uuid.h -------------------------------------------------------------------------------- /extensions/uuid/libuuid/uuidP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/uuidP.h -------------------------------------------------------------------------------- /extensions/uuid/libuuid/uuidd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/libuuid/uuidd.h -------------------------------------------------------------------------------- /extensions/uuid/make-libuuid.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/make-libuuid.r -------------------------------------------------------------------------------- /extensions/uuid/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/make-spec.r -------------------------------------------------------------------------------- /extensions/uuid/mod-uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/uuid/mod-uuid.c -------------------------------------------------------------------------------- /extensions/view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/view/README.md -------------------------------------------------------------------------------- /extensions/view/ext-view-init.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/view/ext-view-init.r -------------------------------------------------------------------------------- /extensions/view/make-spec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/view/make-spec.r -------------------------------------------------------------------------------- /extensions/view/mod-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/extensions/view/mod-view.c -------------------------------------------------------------------------------- /make.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/make.r -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/make.sh -------------------------------------------------------------------------------- /prebuilt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/prebuilt/README.md -------------------------------------------------------------------------------- /ren-c-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/ren-c-logo.png -------------------------------------------------------------------------------- /scripts/encap.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/scripts/encap.r -------------------------------------------------------------------------------- /scripts/latest-of.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/scripts/latest-of.r -------------------------------------------------------------------------------- /scripts/prot-http.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/scripts/prot-http.r -------------------------------------------------------------------------------- /scripts/prot-tls.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/scripts/prot-tls.r -------------------------------------------------------------------------------- /scripts/unzip.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/scripts/unzip.r -------------------------------------------------------------------------------- /src/core/api/a-constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/api/a-constants.c -------------------------------------------------------------------------------- /src/core/api/a-globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/api/a-globals.c -------------------------------------------------------------------------------- /src/core/api/a-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/api/a-lib.c -------------------------------------------------------------------------------- /src/core/boot/b-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/boot/b-init.c -------------------------------------------------------------------------------- /src/core/c-bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-bind.c -------------------------------------------------------------------------------- /src/core/c-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-context.c -------------------------------------------------------------------------------- /src/core/c-do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-do.c -------------------------------------------------------------------------------- /src/core/c-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-error.c -------------------------------------------------------------------------------- /src/core/c-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-function.c -------------------------------------------------------------------------------- /src/core/c-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-path.c -------------------------------------------------------------------------------- /src/core/c-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-signal.c -------------------------------------------------------------------------------- /src/core/c-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-state.c -------------------------------------------------------------------------------- /src/core/c-value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-value.c -------------------------------------------------------------------------------- /src/core/c-word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/c-word.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-backtrace.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-crash.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-dump.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-eval.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-gc.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-print.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-stack.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-stats.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-test.c -------------------------------------------------------------------------------- /src/core/diagnostics/d-trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/diagnostics/d-trace.c -------------------------------------------------------------------------------- /src/core/evaluator/c-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/evaluator/c-action.c -------------------------------------------------------------------------------- /src/core/evaluator/c-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/evaluator/c-eval.c -------------------------------------------------------------------------------- /src/core/evaluator/c-step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/evaluator/c-step.c -------------------------------------------------------------------------------- /src/core/evaluator/c-trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/evaluator/c-trampoline.c -------------------------------------------------------------------------------- /src/core/f-blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-blocks.c -------------------------------------------------------------------------------- /src/core/f-dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-dtoa.c -------------------------------------------------------------------------------- /src/core/f-enbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-enbase.c -------------------------------------------------------------------------------- /src/core/f-extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-extension.c -------------------------------------------------------------------------------- /src/core/f-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-int.c -------------------------------------------------------------------------------- /src/core/f-math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-math.c -------------------------------------------------------------------------------- /src/core/f-modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-modify.c -------------------------------------------------------------------------------- /src/core/f-qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-qsort.c -------------------------------------------------------------------------------- /src/core/f-random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-random.c -------------------------------------------------------------------------------- /src/core/f-round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-round.c -------------------------------------------------------------------------------- /src/core/f-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-series.c -------------------------------------------------------------------------------- /src/core/f-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/f-stubs.c -------------------------------------------------------------------------------- /src/core/functionals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/README.md -------------------------------------------------------------------------------- /src/core/functionals/c-adapt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-adapt.c -------------------------------------------------------------------------------- /src/core/functionals/c-arrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-arrow.c -------------------------------------------------------------------------------- /src/core/functionals/c-augment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-augment.c -------------------------------------------------------------------------------- /src/core/functionals/c-chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-chain.c -------------------------------------------------------------------------------- /src/core/functionals/c-does.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-does.c -------------------------------------------------------------------------------- /src/core/functionals/c-enclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-enclose.c -------------------------------------------------------------------------------- /src/core/functionals/c-hijack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-hijack.c -------------------------------------------------------------------------------- /src/core/functionals/c-lambda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-lambda.c -------------------------------------------------------------------------------- /src/core/functionals/c-macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-macro.c -------------------------------------------------------------------------------- /src/core/functionals/c-native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-native.c -------------------------------------------------------------------------------- /src/core/functionals/c-oneshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-oneshot.c -------------------------------------------------------------------------------- /src/core/functionals/c-reframer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-reframer.c -------------------------------------------------------------------------------- /src/core/functionals/c-reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-reorder.c -------------------------------------------------------------------------------- /src/core/functionals/c-specialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-specialize.c -------------------------------------------------------------------------------- /src/core/functionals/c-typechecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-typechecker.c -------------------------------------------------------------------------------- /src/core/functionals/c-yielder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/c-yielder.c -------------------------------------------------------------------------------- /src/core/functionals/n-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/functionals/n-function.c -------------------------------------------------------------------------------- /src/core/lexer/l-scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/lexer/l-scan.c -------------------------------------------------------------------------------- /src/core/lexer/l-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/lexer/l-types.c -------------------------------------------------------------------------------- /src/core/memory/m-gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/memory/m-gc.c -------------------------------------------------------------------------------- /src/core/memory/m-pools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/memory/m-pools.c -------------------------------------------------------------------------------- /src/core/memory/m-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/memory/m-series.c -------------------------------------------------------------------------------- /src/core/memory/m-stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/memory/m-stacks.c -------------------------------------------------------------------------------- /src/core/natives/n-bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-bitwise.c -------------------------------------------------------------------------------- /src/core/natives/n-compose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-compose.c -------------------------------------------------------------------------------- /src/core/natives/n-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-control.c -------------------------------------------------------------------------------- /src/core/natives/n-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-data.c -------------------------------------------------------------------------------- /src/core/natives/n-do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-do.c -------------------------------------------------------------------------------- /src/core/natives/n-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-error.c -------------------------------------------------------------------------------- /src/core/natives/n-get-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-get-set.c -------------------------------------------------------------------------------- /src/core/natives/n-ghost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-ghost.c -------------------------------------------------------------------------------- /src/core/natives/n-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-io.c -------------------------------------------------------------------------------- /src/core/natives/n-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-loop.c -------------------------------------------------------------------------------- /src/core/natives/n-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-make.c -------------------------------------------------------------------------------- /src/core/natives/n-math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-math.c -------------------------------------------------------------------------------- /src/core/natives/n-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-port.c -------------------------------------------------------------------------------- /src/core/natives/n-protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-protect.c -------------------------------------------------------------------------------- /src/core/natives/n-reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-reduce.c -------------------------------------------------------------------------------- /src/core/natives/n-series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-series.c -------------------------------------------------------------------------------- /src/core/natives/n-sets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-sets.c -------------------------------------------------------------------------------- /src/core/natives/n-strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-strings.c -------------------------------------------------------------------------------- /src/core/natives/n-system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-system.c -------------------------------------------------------------------------------- /src/core/natives/n-transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/natives/n-transcode.c -------------------------------------------------------------------------------- /src/core/parse/c-combinator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/parse/c-combinator.c -------------------------------------------------------------------------------- /src/core/parse/n-parse3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/parse/n-parse3.c -------------------------------------------------------------------------------- /src/core/s-cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-cases.c -------------------------------------------------------------------------------- /src/core/s-crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-crc.c -------------------------------------------------------------------------------- /src/core/s-find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-find.c -------------------------------------------------------------------------------- /src/core/s-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-make.c -------------------------------------------------------------------------------- /src/core/s-mold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-mold.c -------------------------------------------------------------------------------- /src/core/s-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/s-ops.c -------------------------------------------------------------------------------- /src/core/types/t-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-binary.c -------------------------------------------------------------------------------- /src/core/types/t-bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-bitset.c -------------------------------------------------------------------------------- /src/core/types/t-blank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-blank.c -------------------------------------------------------------------------------- /src/core/types/t-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-block.c -------------------------------------------------------------------------------- /src/core/types/t-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-char.c -------------------------------------------------------------------------------- /src/core/types/t-comma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-comma.c -------------------------------------------------------------------------------- /src/core/types/t-datatype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-datatype.c -------------------------------------------------------------------------------- /src/core/types/t-date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-date.c -------------------------------------------------------------------------------- /src/core/types/t-decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-decimal.c -------------------------------------------------------------------------------- /src/core/types/t-integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-integer.c -------------------------------------------------------------------------------- /src/core/types/t-logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-logic.c -------------------------------------------------------------------------------- /src/core/types/t-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-map.c -------------------------------------------------------------------------------- /src/core/types/t-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-object.c -------------------------------------------------------------------------------- /src/core/types/t-pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-pair.c -------------------------------------------------------------------------------- /src/core/types/t-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-port.c -------------------------------------------------------------------------------- /src/core/types/t-quoted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-quoted.c -------------------------------------------------------------------------------- /src/core/types/t-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-string.c -------------------------------------------------------------------------------- /src/core/types/t-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-time.c -------------------------------------------------------------------------------- /src/core/types/t-tuple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-tuple.c -------------------------------------------------------------------------------- /src/core/types/t-typeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-typeset.c -------------------------------------------------------------------------------- /src/core/types/t-varargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-varargs.c -------------------------------------------------------------------------------- /src/core/types/t-word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/types/t-word.c -------------------------------------------------------------------------------- /src/core/u-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/u-compress.c -------------------------------------------------------------------------------- /src/core/u-zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/core/u-zlib.c -------------------------------------------------------------------------------- /src/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/README.md -------------------------------------------------------------------------------- /src/include/assert-fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/assert-fix.h -------------------------------------------------------------------------------- /src/include/bsd-qsort_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/bsd-qsort_r.h -------------------------------------------------------------------------------- /src/include/c-extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/c-extras.h -------------------------------------------------------------------------------- /src/include/casts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/casts/README.md -------------------------------------------------------------------------------- /src/include/casts/cast-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/casts/cast-base.hpp -------------------------------------------------------------------------------- /src/include/casts/cast-cells.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/casts/cast-cells.hpp -------------------------------------------------------------------------------- /src/include/casts/cast-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/casts/cast-misc.hpp -------------------------------------------------------------------------------- /src/include/casts/cast-stubs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/casts/cast-stubs.hpp -------------------------------------------------------------------------------- /src/include/cells/cell-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-array.h -------------------------------------------------------------------------------- /src/include/cells/cell-binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-binary.h -------------------------------------------------------------------------------- /src/include/cells/cell-bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-bitset.h -------------------------------------------------------------------------------- /src/include/cells/cell-comma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-comma.h -------------------------------------------------------------------------------- /src/include/cells/cell-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-context.h -------------------------------------------------------------------------------- /src/include/cells/cell-datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-datatype.h -------------------------------------------------------------------------------- /src/include/cells/cell-decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-decimal.h -------------------------------------------------------------------------------- /src/include/cells/cell-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-error.h -------------------------------------------------------------------------------- /src/include/cells/cell-frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-frame.h -------------------------------------------------------------------------------- /src/include/cells/cell-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-handle.h -------------------------------------------------------------------------------- /src/include/cells/cell-integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-integer.h -------------------------------------------------------------------------------- /src/include/cells/cell-logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-logic.h -------------------------------------------------------------------------------- /src/include/cells/cell-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-map.h -------------------------------------------------------------------------------- /src/include/cells/cell-nulled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-nulled.h -------------------------------------------------------------------------------- /src/include/cells/cell-pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-pair.h -------------------------------------------------------------------------------- /src/include/cells/cell-parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-parameter.h -------------------------------------------------------------------------------- /src/include/cells/cell-quoted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-quoted.h -------------------------------------------------------------------------------- /src/include/cells/cell-rune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-rune.h -------------------------------------------------------------------------------- /src/include/cells/cell-sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-sequence.h -------------------------------------------------------------------------------- /src/include/cells/cell-series.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-series.h -------------------------------------------------------------------------------- /src/include/cells/cell-sigil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-sigil.h -------------------------------------------------------------------------------- /src/include/cells/cell-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-string.h -------------------------------------------------------------------------------- /src/include/cells/cell-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-time.h -------------------------------------------------------------------------------- /src/include/cells/cell-varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-varargs.h -------------------------------------------------------------------------------- /src/include/cells/cell-void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-void.h -------------------------------------------------------------------------------- /src/include/cells/cell-word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/cells/cell-word.h -------------------------------------------------------------------------------- /src/include/debugbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/debugbreak.h -------------------------------------------------------------------------------- /src/include/enums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/enums/README.md -------------------------------------------------------------------------------- /src/include/enums/enum-flavor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/enums/enum-flavor.h -------------------------------------------------------------------------------- /src/include/enums/enum-symid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/enums/enum-symid.h -------------------------------------------------------------------------------- /src/include/enums/enum-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/enums/enum-types.h -------------------------------------------------------------------------------- /src/include/enums/enum-typesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/enums/enum-typesets.h -------------------------------------------------------------------------------- /src/include/executors/exec-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/executors/exec-action.h -------------------------------------------------------------------------------- /src/include/executors/exec-eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/executors/exec-eval.h -------------------------------------------------------------------------------- /src/include/executors/exec-scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/executors/exec-scan.h -------------------------------------------------------------------------------- /src/include/mem-pools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/mem-pools.h -------------------------------------------------------------------------------- /src/include/needful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/needful/README.md -------------------------------------------------------------------------------- /src/include/needful/needful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/needful/needful.h -------------------------------------------------------------------------------- /src/include/reb-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/reb-config.h -------------------------------------------------------------------------------- /src/include/reb-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/reb-defs.h -------------------------------------------------------------------------------- /src/include/reb-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/reb-dtoa.h -------------------------------------------------------------------------------- /src/include/structs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/README.md -------------------------------------------------------------------------------- /src/include/structs/struct-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-array.h -------------------------------------------------------------------------------- /src/include/structs/struct-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-base.h -------------------------------------------------------------------------------- /src/include/structs/struct-binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-binary.h -------------------------------------------------------------------------------- /src/include/structs/struct-bounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-bounce.h -------------------------------------------------------------------------------- /src/include/structs/struct-cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-cell.h -------------------------------------------------------------------------------- /src/include/structs/struct-char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-char.h -------------------------------------------------------------------------------- /src/include/structs/struct-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-context.h -------------------------------------------------------------------------------- /src/include/structs/struct-details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-details.h -------------------------------------------------------------------------------- /src/include/structs/struct-feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-feed.h -------------------------------------------------------------------------------- /src/include/structs/struct-flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-flex.h -------------------------------------------------------------------------------- /src/include/structs/struct-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-level.h -------------------------------------------------------------------------------- /src/include/structs/struct-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-map.h -------------------------------------------------------------------------------- /src/include/structs/struct-mold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-mold.h -------------------------------------------------------------------------------- /src/include/structs/struct-pairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-pairing.h -------------------------------------------------------------------------------- /src/include/structs/struct-patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-patch.h -------------------------------------------------------------------------------- /src/include/structs/struct-sea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-sea.h -------------------------------------------------------------------------------- /src/include/structs/struct-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-source.h -------------------------------------------------------------------------------- /src/include/structs/struct-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-state.h -------------------------------------------------------------------------------- /src/include/structs/struct-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-string.h -------------------------------------------------------------------------------- /src/include/structs/struct-stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-stub.h -------------------------------------------------------------------------------- /src/include/structs/struct-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-value.h -------------------------------------------------------------------------------- /src/include/structs/struct-varlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/structs/struct-varlist.h -------------------------------------------------------------------------------- /src/include/stubs/stub-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-action.h -------------------------------------------------------------------------------- /src/include/stubs/stub-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-api.h -------------------------------------------------------------------------------- /src/include/stubs/stub-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-array.h -------------------------------------------------------------------------------- /src/include/stubs/stub-binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-binary.h -------------------------------------------------------------------------------- /src/include/stubs/stub-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-context.h -------------------------------------------------------------------------------- /src/include/stubs/stub-flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-flex.h -------------------------------------------------------------------------------- /src/include/stubs/stub-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-map.h -------------------------------------------------------------------------------- /src/include/stubs/stub-sea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-sea.h -------------------------------------------------------------------------------- /src/include/stubs/stub-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-source.h -------------------------------------------------------------------------------- /src/include/stubs/stub-strand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-strand.h -------------------------------------------------------------------------------- /src/include/stubs/stub-symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-symbol.h -------------------------------------------------------------------------------- /src/include/stubs/stub-use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-use.h -------------------------------------------------------------------------------- /src/include/stubs/stub-varlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/stubs/stub-varlist.h -------------------------------------------------------------------------------- /src/include/sys-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-base.h -------------------------------------------------------------------------------- /src/include/sys-bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-bind.h -------------------------------------------------------------------------------- /src/include/sys-bounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-bounce.h -------------------------------------------------------------------------------- /src/include/sys-cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-cell.h -------------------------------------------------------------------------------- /src/include/sys-continuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-continuation.h -------------------------------------------------------------------------------- /src/include/sys-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-core.h -------------------------------------------------------------------------------- /src/include/sys-crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-crash.h -------------------------------------------------------------------------------- /src/include/sys-datastack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-datastack.h -------------------------------------------------------------------------------- /src/include/sys-dec-to-char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-dec-to-char.h -------------------------------------------------------------------------------- /src/include/sys-eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-eval.h -------------------------------------------------------------------------------- /src/include/sys-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-ext.h -------------------------------------------------------------------------------- /src/include/sys-feed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-feed.h -------------------------------------------------------------------------------- /src/include/sys-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-flags.h -------------------------------------------------------------------------------- /src/include/sys-gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-gc.h -------------------------------------------------------------------------------- /src/include/sys-globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-globals.h -------------------------------------------------------------------------------- /src/include/sys-hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-hooks.h -------------------------------------------------------------------------------- /src/include/sys-int-funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-int-funcs.h -------------------------------------------------------------------------------- /src/include/sys-intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-intrinsic.h -------------------------------------------------------------------------------- /src/include/sys-isotope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-isotope.h -------------------------------------------------------------------------------- /src/include/sys-level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-level.h -------------------------------------------------------------------------------- /src/include/sys-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-lib.h -------------------------------------------------------------------------------- /src/include/sys-mold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-mold.h -------------------------------------------------------------------------------- /src/include/sys-pick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-pick.h -------------------------------------------------------------------------------- /src/include/sys-probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-probe.h -------------------------------------------------------------------------------- /src/include/sys-protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-protect.h -------------------------------------------------------------------------------- /src/include/sys-recover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-recover.h -------------------------------------------------------------------------------- /src/include/sys-scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-scan.h -------------------------------------------------------------------------------- /src/include/sys-stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-stub.h -------------------------------------------------------------------------------- /src/include/sys-throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-throw.h -------------------------------------------------------------------------------- /src/include/sys-tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-tick.h -------------------------------------------------------------------------------- /src/include/sys-track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-track.h -------------------------------------------------------------------------------- /src/include/sys-trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-trampoline.h -------------------------------------------------------------------------------- /src/include/sys-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-utf8.h -------------------------------------------------------------------------------- /src/include/sys-zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/include/sys-zlib.h -------------------------------------------------------------------------------- /src/main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/main/README.md -------------------------------------------------------------------------------- /src/main/main-startup.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/main/main-startup.r -------------------------------------------------------------------------------- /src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/main/main.c -------------------------------------------------------------------------------- /src/main/prep-main.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/main/prep-main.r -------------------------------------------------------------------------------- /src/mezz/base-constants.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/base-constants.r -------------------------------------------------------------------------------- /src/mezz/base-defs.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/base-defs.r -------------------------------------------------------------------------------- /src/mezz/base-files.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/base-files.r -------------------------------------------------------------------------------- /src/mezz/base-funcs.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/base-funcs.r -------------------------------------------------------------------------------- /src/mezz/base-series.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/base-series.r -------------------------------------------------------------------------------- /src/mezz/boot-files.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/boot-files.r -------------------------------------------------------------------------------- /src/mezz/mezz-colors.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-colors.r -------------------------------------------------------------------------------- /src/mezz/mezz-control.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-control.r -------------------------------------------------------------------------------- /src/mezz/mezz-debug.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-debug.r -------------------------------------------------------------------------------- /src/mezz/mezz-dump.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-dump.r -------------------------------------------------------------------------------- /src/mezz/mezz-files.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-files.r -------------------------------------------------------------------------------- /src/mezz/mezz-help.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-help.r -------------------------------------------------------------------------------- /src/mezz/mezz-legacy.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-legacy.r -------------------------------------------------------------------------------- /src/mezz/mezz-math.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-math.r -------------------------------------------------------------------------------- /src/mezz/mezz-save.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-save.r -------------------------------------------------------------------------------- /src/mezz/mezz-series.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-series.r -------------------------------------------------------------------------------- /src/mezz/mezz-shell.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-shell.r -------------------------------------------------------------------------------- /src/mezz/mezz-types.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/mezz-types.r -------------------------------------------------------------------------------- /src/mezz/sys-base.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/sys-base.r -------------------------------------------------------------------------------- /src/mezz/sys-codec.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/sys-codec.r -------------------------------------------------------------------------------- /src/mezz/sys-load.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/sys-load.r -------------------------------------------------------------------------------- /src/mezz/sys-ports.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/sys-ports.r -------------------------------------------------------------------------------- /src/mezz/uparse-extras.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/uparse-extras.r -------------------------------------------------------------------------------- /src/mezz/uparse.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/mezz/uparse.r -------------------------------------------------------------------------------- /src/specs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/README.md -------------------------------------------------------------------------------- /src/specs/errors.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/errors.r -------------------------------------------------------------------------------- /src/specs/ext-words.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/ext-words.r -------------------------------------------------------------------------------- /src/specs/generics.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/generics.r -------------------------------------------------------------------------------- /src/specs/lib-words.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/lib-words.r -------------------------------------------------------------------------------- /src/specs/symbols.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/symbols.r -------------------------------------------------------------------------------- /src/specs/sysobj.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/sysobj.r -------------------------------------------------------------------------------- /src/specs/task.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/task.r -------------------------------------------------------------------------------- /src/specs/types.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/types.r -------------------------------------------------------------------------------- /src/specs/version.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/src/specs/version.r -------------------------------------------------------------------------------- /tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/LICENSE -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/api/librebol.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/api/librebol.test.r -------------------------------------------------------------------------------- /tests/comparison/equalq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/equalq.test.r -------------------------------------------------------------------------------- /tests/comparison/lesserq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/lesserq.test.r -------------------------------------------------------------------------------- /tests/comparison/maximum-of.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/maximum-of.test.r -------------------------------------------------------------------------------- /tests/comparison/sameq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/sameq.test.r -------------------------------------------------------------------------------- /tests/comparison/strict-equalq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/strict-equalq.test.r -------------------------------------------------------------------------------- /tests/comparison/strict-not-equalq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/comparison/strict-not-equalq.test.r -------------------------------------------------------------------------------- /tests/context/bind.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/bind.test.r -------------------------------------------------------------------------------- /tests/context/bindq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/bindq.test.r -------------------------------------------------------------------------------- /tests/context/boundq.test.r: -------------------------------------------------------------------------------- 1 | ; functions/context/boundq.r 2 | -------------------------------------------------------------------------------- /tests/context/collect-words.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/collect-words.test.r -------------------------------------------------------------------------------- /tests/context/construct.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/construct.test.r -------------------------------------------------------------------------------- /tests/context/let.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/let.test.r -------------------------------------------------------------------------------- /tests/context/resolve.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/resolve.test.r -------------------------------------------------------------------------------- /tests/context/set.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/set.test.r -------------------------------------------------------------------------------- /tests/context/unset.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/unset.test.r -------------------------------------------------------------------------------- /tests/context/use.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/use.test.r -------------------------------------------------------------------------------- /tests/context/valueq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/valueq.test.r -------------------------------------------------------------------------------- /tests/context/virtual-bind.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/virtual-bind.test.r -------------------------------------------------------------------------------- /tests/context/wrap.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/context/wrap.test.r -------------------------------------------------------------------------------- /tests/control/all.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/all.test.r -------------------------------------------------------------------------------- /tests/control/any.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/any.test.r -------------------------------------------------------------------------------- /tests/control/case.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/case.test.r -------------------------------------------------------------------------------- /tests/control/catch.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/catch.test.r -------------------------------------------------------------------------------- /tests/control/compose.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/compose.test.r -------------------------------------------------------------------------------- /tests/control/default.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/default.test.r -------------------------------------------------------------------------------- /tests/control/destructure.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/destructure.test.r -------------------------------------------------------------------------------- /tests/control/do.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/do.test.r -------------------------------------------------------------------------------- /tests/control/either.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/either.test.r -------------------------------------------------------------------------------- /tests/control/else.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/else.test.r -------------------------------------------------------------------------------- /tests/control/halt.test.r: -------------------------------------------------------------------------------- 1 | ; functions/control/halt.r 2 | (frame? unrun halt/) 3 | -------------------------------------------------------------------------------- /tests/control/if.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/if.test.r -------------------------------------------------------------------------------- /tests/control/match.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/match.test.r -------------------------------------------------------------------------------- /tests/control/maybe.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/maybe.test.r -------------------------------------------------------------------------------- /tests/control/quit.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/quit.test.r -------------------------------------------------------------------------------- /tests/control/reduce.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/reduce.test.r -------------------------------------------------------------------------------- /tests/control/reeval.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/reeval.test.r -------------------------------------------------------------------------------- /tests/control/switch.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/switch.test.r -------------------------------------------------------------------------------- /tests/control/typecheck.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/typecheck.test.r -------------------------------------------------------------------------------- /tests/control/unless.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/unless.test.r -------------------------------------------------------------------------------- /tests/control/wait.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/control/wait.test.r -------------------------------------------------------------------------------- /tests/convert/as-binary.test.r: -------------------------------------------------------------------------------- 1 | ; functions/convert/as-binary.r 2 | -------------------------------------------------------------------------------- /tests/convert/as-string.test.r: -------------------------------------------------------------------------------- 1 | ; functions/convert/as-string.r 2 | -------------------------------------------------------------------------------- /tests/convert/enbin.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/convert/enbin.test.r -------------------------------------------------------------------------------- /tests/convert/encode.test.r: -------------------------------------------------------------------------------- 1 | ; functions/convert/encode.r 2 | -------------------------------------------------------------------------------- /tests/convert/mold.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/convert/mold.test.r -------------------------------------------------------------------------------- /tests/convert/to-hex.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/convert/to-hex.test.r -------------------------------------------------------------------------------- /tests/convert/to.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/convert/to.test.r -------------------------------------------------------------------------------- /tests/core-tests.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/core-tests.r -------------------------------------------------------------------------------- /tests/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/README.md -------------------------------------------------------------------------------- /tests/cypress/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/cypress.config.js -------------------------------------------------------------------------------- /tests/cypress/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/e2e/README.md -------------------------------------------------------------------------------- /tests/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/fixtures/example.json -------------------------------------------------------------------------------- /tests/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/package.json -------------------------------------------------------------------------------- /tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /tests/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/cypress/support/e2e.js -------------------------------------------------------------------------------- /tests/datatypes/action.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/action.test.r -------------------------------------------------------------------------------- /tests/datatypes/binary.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/binary.test.r -------------------------------------------------------------------------------- /tests/datatypes/bitset.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/bitset.test.r -------------------------------------------------------------------------------- /tests/datatypes/blank.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/blank.test.r -------------------------------------------------------------------------------- /tests/datatypes/block.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/block.test.r -------------------------------------------------------------------------------- /tests/datatypes/chain.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/chain.test.r -------------------------------------------------------------------------------- /tests/datatypes/char.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/char.test.r -------------------------------------------------------------------------------- /tests/datatypes/comma.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/comma.test.r -------------------------------------------------------------------------------- /tests/datatypes/datatype.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/datatype.test.r -------------------------------------------------------------------------------- /tests/datatypes/date.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/date.test.r -------------------------------------------------------------------------------- /tests/datatypes/decimal.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/decimal.test.r -------------------------------------------------------------------------------- /tests/datatypes/dictionary.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/dictionary.test.r -------------------------------------------------------------------------------- /tests/datatypes/email.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/email.test.r -------------------------------------------------------------------------------- /tests/datatypes/error.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/error.test.r -------------------------------------------------------------------------------- /tests/datatypes/fence.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/fence.test.r -------------------------------------------------------------------------------- /tests/datatypes/file.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/file.test.r -------------------------------------------------------------------------------- /tests/datatypes/frame.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/frame.test.r -------------------------------------------------------------------------------- /tests/datatypes/get-block.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/get-block.test.r -------------------------------------------------------------------------------- /tests/datatypes/get-group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/get-group.test.r -------------------------------------------------------------------------------- /tests/datatypes/get-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/get-path.test.r -------------------------------------------------------------------------------- /tests/datatypes/get-word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/get-word.test.r -------------------------------------------------------------------------------- /tests/datatypes/hash.test.r: -------------------------------------------------------------------------------- 1 | ; datatypes/hash.r 2 | -------------------------------------------------------------------------------- /tests/datatypes/integer.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/integer.test.r -------------------------------------------------------------------------------- /tests/datatypes/lit-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/lit-path.test.r -------------------------------------------------------------------------------- /tests/datatypes/lit-word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/lit-word.test.r -------------------------------------------------------------------------------- /tests/datatypes/logic.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/logic.test.r -------------------------------------------------------------------------------- /tests/datatypes/meta-block.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/meta-block.test.r -------------------------------------------------------------------------------- /tests/datatypes/meta-group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/meta-group.test.r -------------------------------------------------------------------------------- /tests/datatypes/meta-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/meta-path.test.r -------------------------------------------------------------------------------- /tests/datatypes/meta-word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/meta-word.test.r -------------------------------------------------------------------------------- /tests/datatypes/meta.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/meta.test.r -------------------------------------------------------------------------------- /tests/datatypes/module.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/module.test.r -------------------------------------------------------------------------------- /tests/datatypes/money-math.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/money-math.test.r -------------------------------------------------------------------------------- /tests/datatypes/money.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/money.test.r -------------------------------------------------------------------------------- /tests/datatypes/null.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/null.test.r -------------------------------------------------------------------------------- /tests/datatypes/object.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/object.test.r -------------------------------------------------------------------------------- /tests/datatypes/pair.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/pair.test.r -------------------------------------------------------------------------------- /tests/datatypes/parameter.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/parameter.test.r -------------------------------------------------------------------------------- /tests/datatypes/paren.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/paren.test.r -------------------------------------------------------------------------------- /tests/datatypes/path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/path.test.r -------------------------------------------------------------------------------- /tests/datatypes/percent.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/percent.test.r -------------------------------------------------------------------------------- /tests/datatypes/port.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/port.test.r -------------------------------------------------------------------------------- /tests/datatypes/quasi.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/quasi.test.r -------------------------------------------------------------------------------- /tests/datatypes/quoted.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/quoted.test.r -------------------------------------------------------------------------------- /tests/datatypes/refinement.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/refinement.test.r -------------------------------------------------------------------------------- /tests/datatypes/rune.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/rune.test.r -------------------------------------------------------------------------------- /tests/datatypes/set-block.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/set-block.test.r -------------------------------------------------------------------------------- /tests/datatypes/set-group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/set-group.test.r -------------------------------------------------------------------------------- /tests/datatypes/set-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/set-path.test.r -------------------------------------------------------------------------------- /tests/datatypes/set-word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/set-word.test.r -------------------------------------------------------------------------------- /tests/datatypes/sigil.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/sigil.test.r -------------------------------------------------------------------------------- /tests/datatypes/string.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/string.test.r -------------------------------------------------------------------------------- /tests/datatypes/tag.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/tag.test.r -------------------------------------------------------------------------------- /tests/datatypes/the.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/the.test.r -------------------------------------------------------------------------------- /tests/datatypes/time.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/time.test.r -------------------------------------------------------------------------------- /tests/datatypes/tuple.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/tuple.test.r -------------------------------------------------------------------------------- /tests/datatypes/url.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/url.test.r -------------------------------------------------------------------------------- /tests/datatypes/varargs.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/varargs.test.r -------------------------------------------------------------------------------- /tests/datatypes/word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/datatypes/word.test.r -------------------------------------------------------------------------------- /tests/define/func.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/define/func.test.r -------------------------------------------------------------------------------- /tests/errors/disarm.test.r: -------------------------------------------------------------------------------- 1 | ; functions/control/disarm.r 2 | -------------------------------------------------------------------------------- /tests/errors/except.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/errors/except.test.r -------------------------------------------------------------------------------- /tests/errors/require.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/errors/require.test.r -------------------------------------------------------------------------------- /tests/errors/rescue.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/errors/rescue.test.r -------------------------------------------------------------------------------- /tests/errors/trap.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/errors/trap.test.r -------------------------------------------------------------------------------- /tests/examples/circled.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/circled.test.r -------------------------------------------------------------------------------- /tests/examples/flow.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/flow.test.r -------------------------------------------------------------------------------- /tests/examples/giulio-generate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/giulio-generate.test.r -------------------------------------------------------------------------------- /tests/examples/giulio-read-lines.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/giulio-read-lines.test.r -------------------------------------------------------------------------------- /tests/examples/n-queens.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/n-queens.test.r -------------------------------------------------------------------------------- /tests/examples/prime-factors.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/prime-factors.test.r -------------------------------------------------------------------------------- /tests/examples/sudoku-solver.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/examples/sudoku-solver.test.r -------------------------------------------------------------------------------- /tests/file/clean-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/clean-path.test.r -------------------------------------------------------------------------------- /tests/file/existsq.test.r: -------------------------------------------------------------------------------- 1 | ; functions/file/existsq.r 2 | -------------------------------------------------------------------------------- /tests/file/file-port.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/file-port.test.r -------------------------------------------------------------------------------- /tests/file/file-typeq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/file-typeq.test.r -------------------------------------------------------------------------------- /tests/file/make-dir.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/make-dir.test.r -------------------------------------------------------------------------------- /tests/file/open.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/open.test.r -------------------------------------------------------------------------------- /tests/file/split-path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/file/split-path.test.r -------------------------------------------------------------------------------- /tests/fixtures/corrupt-zdeflated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/corrupt-zdeflated.bin -------------------------------------------------------------------------------- /tests/fixtures/rebol-logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/rebol-logo.bmp -------------------------------------------------------------------------------- /tests/fixtures/rebol-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/rebol-logo.gif -------------------------------------------------------------------------------- /tests/fixtures/rebol-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/rebol-logo.jpg -------------------------------------------------------------------------------- /tests/fixtures/rebol-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/rebol-logo.png -------------------------------------------------------------------------------- /tests/fixtures/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/test.docx -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf16be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/umlauts-utf16be.txt -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/umlauts-utf16le.txt -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf32be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/umlauts-utf32be.txt -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf32le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/umlauts-utf32le.txt -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf8.txt: -------------------------------------------------------------------------------- 1 | äöü -------------------------------------------------------------------------------- /tests/fixtures/umlauts-utf8bom.txt: -------------------------------------------------------------------------------- 1 | äöü -------------------------------------------------------------------------------- /tests/fixtures/utf8-plain-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/fixtures/utf8-plain-text.txt -------------------------------------------------------------------------------- /tests/flags.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/flags.r -------------------------------------------------------------------------------- /tests/functions/adapt.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/adapt.test.r -------------------------------------------------------------------------------- /tests/functions/apply.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/apply.test.r -------------------------------------------------------------------------------- /tests/functions/augment.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/augment.test.r -------------------------------------------------------------------------------- /tests/functions/cascade.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/cascade.test.r -------------------------------------------------------------------------------- /tests/functions/does.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/does.test.r -------------------------------------------------------------------------------- /tests/functions/enclose.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/enclose.test.r -------------------------------------------------------------------------------- /tests/functions/frame.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/frame.test.r -------------------------------------------------------------------------------- /tests/functions/function.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/function.test.r -------------------------------------------------------------------------------- /tests/functions/generator.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/generator.test.r -------------------------------------------------------------------------------- /tests/functions/hijack.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/hijack.test.r -------------------------------------------------------------------------------- /tests/functions/infix.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/infix.test.r -------------------------------------------------------------------------------- /tests/functions/lambda.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/lambda.test.r -------------------------------------------------------------------------------- /tests/functions/let.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/let.test.r -------------------------------------------------------------------------------- /tests/functions/literal.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/literal.test.r -------------------------------------------------------------------------------- /tests/functions/macro.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/macro.test.r -------------------------------------------------------------------------------- /tests/functions/multi.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/multi.test.r -------------------------------------------------------------------------------- /tests/functions/native.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/native.test.r -------------------------------------------------------------------------------- /tests/functions/oneshot.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/oneshot.test.r -------------------------------------------------------------------------------- /tests/functions/pointfree.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/pointfree.test.r -------------------------------------------------------------------------------- /tests/functions/predicate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/predicate.test.r -------------------------------------------------------------------------------- /tests/functions/reframer.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/reframer.test.r -------------------------------------------------------------------------------- /tests/functions/reorder.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/reorder.test.r -------------------------------------------------------------------------------- /tests/functions/return.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/return.test.r -------------------------------------------------------------------------------- /tests/functions/shove.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/shove.test.r -------------------------------------------------------------------------------- /tests/functions/specialize.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/specialize.test.r -------------------------------------------------------------------------------- /tests/functions/typechecker.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/typechecker.test.r -------------------------------------------------------------------------------- /tests/functions/unwind.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/unwind.test.r -------------------------------------------------------------------------------- /tests/functions/yielder.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/functions/yielder.test.r -------------------------------------------------------------------------------- /tests/invisibles/bar-bar-bar.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/bar-bar-bar.test.r -------------------------------------------------------------------------------- /tests/invisibles/bar-bar.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/bar-bar.test.r -------------------------------------------------------------------------------- /tests/invisibles/comment.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/comment.test.r -------------------------------------------------------------------------------- /tests/invisibles/elide.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/elide.test.r -------------------------------------------------------------------------------- /tests/invisibles/invisible.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/invisible.test.r -------------------------------------------------------------------------------- /tests/invisibles/once-bar.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/once-bar.test.r -------------------------------------------------------------------------------- /tests/invisibles/star-star.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/invisibles/star-star.test.r -------------------------------------------------------------------------------- /tests/log-diff.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/log-diff.r -------------------------------------------------------------------------------- /tests/log-filter.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/log-filter.r -------------------------------------------------------------------------------- /tests/loops/attempt.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/attempt.test.r -------------------------------------------------------------------------------- /tests/loops/break.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/break.test.r -------------------------------------------------------------------------------- /tests/loops/cfor.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/cfor.test.r -------------------------------------------------------------------------------- /tests/loops/continue.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/continue.test.r -------------------------------------------------------------------------------- /tests/loops/count-up.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/count-up.test.r -------------------------------------------------------------------------------- /tests/loops/cycle.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/cycle.test.r -------------------------------------------------------------------------------- /tests/loops/every.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/every.test.r -------------------------------------------------------------------------------- /tests/loops/for-next.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/for-next.test.r -------------------------------------------------------------------------------- /tests/loops/for.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/for.test.r -------------------------------------------------------------------------------- /tests/loops/insist.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/insist.test.r -------------------------------------------------------------------------------- /tests/loops/iterate-skip.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/iterate-skip.test.r -------------------------------------------------------------------------------- /tests/loops/iterate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/iterate.test.r -------------------------------------------------------------------------------- /tests/loops/map.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/map.test.r -------------------------------------------------------------------------------- /tests/loops/remove-each.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/remove-each.test.r -------------------------------------------------------------------------------- /tests/loops/repeat.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/repeat.test.r -------------------------------------------------------------------------------- /tests/loops/while.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/loops/while.test.r -------------------------------------------------------------------------------- /tests/math/absolute.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/absolute.test.r -------------------------------------------------------------------------------- /tests/math/add.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/add.test.r -------------------------------------------------------------------------------- /tests/math/and.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/and.test.r -------------------------------------------------------------------------------- /tests/math/arcsine.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/arcsine.test.r -------------------------------------------------------------------------------- /tests/math/arctangent.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/arctangent.test.r -------------------------------------------------------------------------------- /tests/math/complement.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/complement.test.r -------------------------------------------------------------------------------- /tests/math/cosine.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/cosine.test.r -------------------------------------------------------------------------------- /tests/math/difference.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/difference.test.r -------------------------------------------------------------------------------- /tests/math/divide.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/divide.test.r -------------------------------------------------------------------------------- /tests/math/evenq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/evenq.test.r -------------------------------------------------------------------------------- /tests/math/exp.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/exp.test.r -------------------------------------------------------------------------------- /tests/math/log-10.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/log-10.test.r -------------------------------------------------------------------------------- /tests/math/log-2.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/log-2.test.r -------------------------------------------------------------------------------- /tests/math/log-e.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/log-e.test.r -------------------------------------------------------------------------------- /tests/math/math.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/math.test.r -------------------------------------------------------------------------------- /tests/math/mod.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/mod.test.r -------------------------------------------------------------------------------- /tests/math/multiply.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/multiply.test.r -------------------------------------------------------------------------------- /tests/math/negate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/negate.test.r -------------------------------------------------------------------------------- /tests/math/negativeq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/negativeq.test.r -------------------------------------------------------------------------------- /tests/math/not.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/not.test.r -------------------------------------------------------------------------------- /tests/math/positiveq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/positiveq.test.r -------------------------------------------------------------------------------- /tests/math/power.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/power.test.r -------------------------------------------------------------------------------- /tests/math/random.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/random.test.r -------------------------------------------------------------------------------- /tests/math/remainder.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/remainder.test.r -------------------------------------------------------------------------------- /tests/math/round.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/round.test.r -------------------------------------------------------------------------------- /tests/math/shift.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/shift.test.r -------------------------------------------------------------------------------- /tests/math/signq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/signq.test.r -------------------------------------------------------------------------------- /tests/math/sine.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/sine.test.r -------------------------------------------------------------------------------- /tests/math/square-root.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/square-root.test.r -------------------------------------------------------------------------------- /tests/math/subtract.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/subtract.test.r -------------------------------------------------------------------------------- /tests/math/tangent.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/tangent.test.r -------------------------------------------------------------------------------- /tests/math/zeroq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/math/zeroq.test.r -------------------------------------------------------------------------------- /tests/misc/assert.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/assert.test.r -------------------------------------------------------------------------------- /tests/misc/help.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/help.test.r -------------------------------------------------------------------------------- /tests/misc/pack-old.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/pack-old.test.r -------------------------------------------------------------------------------- /tests/misc/panic-script.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/panic-script.r -------------------------------------------------------------------------------- /tests/misc/panic.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/panic.test.r -------------------------------------------------------------------------------- /tests/misc/quit-script.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/misc/quit-script.r -------------------------------------------------------------------------------- /tests/network/http.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/network/http.test.r -------------------------------------------------------------------------------- /tests/parse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/README.md -------------------------------------------------------------------------------- /tests/parse/examples/argtest.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/argtest.parse.test.r -------------------------------------------------------------------------------- /tests/parse/examples/breaker.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/breaker.parse.test.r -------------------------------------------------------------------------------- /tests/parse/examples/nanbnc.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/nanbnc.parse.test.r -------------------------------------------------------------------------------- /tests/parse/examples/reword.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/reword.parse.test.r -------------------------------------------------------------------------------- /tests/parse/examples/split.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/split.parse.test.r -------------------------------------------------------------------------------- /tests/parse/examples/trim.parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/examples/trim.parse.test.r -------------------------------------------------------------------------------- /tests/parse/parse-match.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse-match.test.r -------------------------------------------------------------------------------- /tests/parse/parse-thru.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse-thru.test.r -------------------------------------------------------------------------------- /tests/parse/parse.accept.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.accept.test.r -------------------------------------------------------------------------------- /tests/parse/parse.accumulate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.accumulate.test.r -------------------------------------------------------------------------------- /tests/parse/parse.across.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.across.test.r -------------------------------------------------------------------------------- /tests/parse/parse.action.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.action.test.r -------------------------------------------------------------------------------- /tests/parse/parse.ahead.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.ahead.test.r -------------------------------------------------------------------------------- /tests/parse/parse.any.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.any.test.r -------------------------------------------------------------------------------- /tests/parse/parse.between.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.between.test.r -------------------------------------------------------------------------------- /tests/parse/parse.binary.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.binary.test.r -------------------------------------------------------------------------------- /tests/parse/parse.bitset.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.bitset.test.r -------------------------------------------------------------------------------- /tests/parse/parse.blank.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.blank.test.r -------------------------------------------------------------------------------- /tests/parse/parse.block.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.block.test.r -------------------------------------------------------------------------------- /tests/parse/parse.break.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.break.test.r -------------------------------------------------------------------------------- /tests/parse/parse.change.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.change.test.r -------------------------------------------------------------------------------- /tests/parse/parse.collect.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.collect.test.r -------------------------------------------------------------------------------- /tests/parse/parse.cond.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.cond.test.r -------------------------------------------------------------------------------- /tests/parse/parse.datatype.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.datatype.test.r -------------------------------------------------------------------------------- /tests/parse/parse.elide.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.elide.test.r -------------------------------------------------------------------------------- /tests/parse/parse.ellipsis.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.ellipsis.test.r -------------------------------------------------------------------------------- /tests/parse/parse.further.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.further.test.r -------------------------------------------------------------------------------- /tests/parse/parse.furthest.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.furthest.test.r -------------------------------------------------------------------------------- /tests/parse/parse.gather.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.gather.test.r -------------------------------------------------------------------------------- /tests/parse/parse.get-group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.get-group.test.r -------------------------------------------------------------------------------- /tests/parse/parse.group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.group.test.r -------------------------------------------------------------------------------- /tests/parse/parse.insert.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.insert.test.r -------------------------------------------------------------------------------- /tests/parse/parse.into.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.into.test.r -------------------------------------------------------------------------------- /tests/parse/parse.just.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.just.test.r -------------------------------------------------------------------------------- /tests/parse/parse.let.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.let.test.r -------------------------------------------------------------------------------- /tests/parse/parse.literal.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.literal.test.r -------------------------------------------------------------------------------- /tests/parse/parse.match.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.match.test.r -------------------------------------------------------------------------------- /tests/parse/parse.maybe.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.maybe.test.r -------------------------------------------------------------------------------- /tests/parse/parse.measure.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.measure.test.r -------------------------------------------------------------------------------- /tests/parse/parse.meta-xxx.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.meta-xxx.test.r -------------------------------------------------------------------------------- /tests/parse/parse.not.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.not.test.r -------------------------------------------------------------------------------- /tests/parse/parse.one.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.one.test.r -------------------------------------------------------------------------------- /tests/parse/parse.optional.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.optional.test.r -------------------------------------------------------------------------------- /tests/parse/parse.path.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.path.test.r -------------------------------------------------------------------------------- /tests/parse/parse.phase.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.phase.test.r -------------------------------------------------------------------------------- /tests/parse/parse.quasi.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.quasi.test.r -------------------------------------------------------------------------------- /tests/parse/parse.quoted.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.quoted.test.r -------------------------------------------------------------------------------- /tests/parse/parse.remove.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.remove.test.r -------------------------------------------------------------------------------- /tests/parse/parse.repeat.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.repeat.test.r -------------------------------------------------------------------------------- /tests/parse/parse.rune.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.rune.test.r -------------------------------------------------------------------------------- /tests/parse/parse.seek.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.seek.test.r -------------------------------------------------------------------------------- /tests/parse/parse.set-group.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.set-group.test.r -------------------------------------------------------------------------------- /tests/parse/parse.set-word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.set-word.test.r -------------------------------------------------------------------------------- /tests/parse/parse.skip.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.skip.test.r -------------------------------------------------------------------------------- /tests/parse/parse.some.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.some.test.r -------------------------------------------------------------------------------- /tests/parse/parse.stop.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.stop.test.r -------------------------------------------------------------------------------- /tests/parse/parse.subparse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.subparse.test.r -------------------------------------------------------------------------------- /tests/parse/parse.tag-end.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.tag-end.test.r -------------------------------------------------------------------------------- /tests/parse/parse.tag-here.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.tag-here.test.r -------------------------------------------------------------------------------- /tests/parse/parse.tag-index.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.tag-index.test.r -------------------------------------------------------------------------------- /tests/parse/parse.tally.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.tally.test.r -------------------------------------------------------------------------------- /tests/parse/parse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.test.r -------------------------------------------------------------------------------- /tests/parse/parse.text.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.text.test.r -------------------------------------------------------------------------------- /tests/parse/parse.the-xxx.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.the-xxx.test.r -------------------------------------------------------------------------------- /tests/parse/parse.thru.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.thru.test.r -------------------------------------------------------------------------------- /tests/parse/parse.to.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.to.test.r -------------------------------------------------------------------------------- /tests/parse/parse.validate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.validate.test.r -------------------------------------------------------------------------------- /tests/parse/parse.veto.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.veto.test.r -------------------------------------------------------------------------------- /tests/parse/parse.void.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.void.test.r -------------------------------------------------------------------------------- /tests/parse/parse.while.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.while.test.r -------------------------------------------------------------------------------- /tests/parse/parse.word.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse.word.test.r -------------------------------------------------------------------------------- /tests/parse/parse3.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/parse/parse3.test.r -------------------------------------------------------------------------------- /tests/reflectors/body-of.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/reflectors/body-of.test.r -------------------------------------------------------------------------------- /tests/run-tests.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/run-tests.r -------------------------------------------------------------------------------- /tests/scanner/load.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/scanner/load.test.r -------------------------------------------------------------------------------- /tests/scanner/path-tuple.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/scanner/path-tuple.test.r -------------------------------------------------------------------------------- /tests/scanner/source-comment.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/scanner/source-comment.test.r -------------------------------------------------------------------------------- /tests/secure/const.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/secure/const.test.r -------------------------------------------------------------------------------- /tests/secure/protect.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/secure/protect.test.r -------------------------------------------------------------------------------- /tests/secure/unprotect.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/secure/unprotect.test.r -------------------------------------------------------------------------------- /tests/series/append.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/append.test.r -------------------------------------------------------------------------------- /tests/series/as.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/as.test.r -------------------------------------------------------------------------------- /tests/series/at.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/at.test.r -------------------------------------------------------------------------------- /tests/series/back.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/back.test.r -------------------------------------------------------------------------------- /tests/series/change.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/change.test.r -------------------------------------------------------------------------------- /tests/series/charset.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/charset.test.r -------------------------------------------------------------------------------- /tests/series/clear.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/clear.test.r -------------------------------------------------------------------------------- /tests/series/collect.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/collect.test.r -------------------------------------------------------------------------------- /tests/series/copy.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/copy.test.r -------------------------------------------------------------------------------- /tests/series/delimit.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/delimit.test.r -------------------------------------------------------------------------------- /tests/series/emptyq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/emptyq.test.r -------------------------------------------------------------------------------- /tests/series/envelop.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/envelop.test.r -------------------------------------------------------------------------------- /tests/series/exclude.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/exclude.test.r -------------------------------------------------------------------------------- /tests/series/extract.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/extract.test.r -------------------------------------------------------------------------------- /tests/series/find.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/find.test.r -------------------------------------------------------------------------------- /tests/series/free.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/free.test.r -------------------------------------------------------------------------------- /tests/series/glom.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/glom.test.r -------------------------------------------------------------------------------- /tests/series/indexq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/indexq.test.r -------------------------------------------------------------------------------- /tests/series/insert.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/insert.test.r -------------------------------------------------------------------------------- /tests/series/intersect.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/intersect.test.r -------------------------------------------------------------------------------- /tests/series/join.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/join.test.r -------------------------------------------------------------------------------- /tests/series/last.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/last.test.r -------------------------------------------------------------------------------- /tests/series/lengthq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/lengthq.test.r -------------------------------------------------------------------------------- /tests/series/next.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/next.test.r -------------------------------------------------------------------------------- /tests/series/ordinals.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/ordinals.test.r -------------------------------------------------------------------------------- /tests/series/pick.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/pick.test.r -------------------------------------------------------------------------------- /tests/series/poke.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/poke.test.r -------------------------------------------------------------------------------- /tests/series/remove.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/remove.test.r -------------------------------------------------------------------------------- /tests/series/replace.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/replace.test.r -------------------------------------------------------------------------------- /tests/series/reverse.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/reverse.test.r -------------------------------------------------------------------------------- /tests/series/reword.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/reword.test.r -------------------------------------------------------------------------------- /tests/series/select.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/select.test.r -------------------------------------------------------------------------------- /tests/series/skip.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/skip.test.r -------------------------------------------------------------------------------- /tests/series/sort.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/sort.test.r -------------------------------------------------------------------------------- /tests/series/split.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/split.test.r -------------------------------------------------------------------------------- /tests/series/tailq.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/tailq.test.r -------------------------------------------------------------------------------- /tests/series/trim.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/trim.test.r -------------------------------------------------------------------------------- /tests/series/union.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/union.test.r -------------------------------------------------------------------------------- /tests/series/unique.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/series/unique.test.r -------------------------------------------------------------------------------- /tests/source/analysis.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/source/analysis.test.r -------------------------------------------------------------------------------- /tests/source/source-tools.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/source/source-tools.r -------------------------------------------------------------------------------- /tests/source/text-lines.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/source/text-lines.test.r -------------------------------------------------------------------------------- /tests/string/codepoint.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/codepoint.test.r -------------------------------------------------------------------------------- /tests/string/compress.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/compress.test.r -------------------------------------------------------------------------------- /tests/string/decode.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/decode.test.r -------------------------------------------------------------------------------- /tests/string/decompress.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/decompress.test.r -------------------------------------------------------------------------------- /tests/string/dehex.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/dehex.test.r -------------------------------------------------------------------------------- /tests/string/deline.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/deline.test.r -------------------------------------------------------------------------------- /tests/string/encode.test.r: -------------------------------------------------------------------------------- 1 | ; functions/string/encode.r 2 | -------------------------------------------------------------------------------- /tests/string/interpolate.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/interpolate.test.r -------------------------------------------------------------------------------- /tests/string/transcode.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/transcode.test.r -------------------------------------------------------------------------------- /tests/string/utf8.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/string/utf8.test.r -------------------------------------------------------------------------------- /tests/system/file.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/system/file.test.r -------------------------------------------------------------------------------- /tests/system/gc.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/system/gc.test.r -------------------------------------------------------------------------------- /tests/system/system.test.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/system/system.test.r -------------------------------------------------------------------------------- /tests/test-framework.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/test-framework.r -------------------------------------------------------------------------------- /tests/test-parsing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tests/test-parsing.r -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | These are tools for building Rebol. 2 | -------------------------------------------------------------------------------- /tools/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bash/README.md -------------------------------------------------------------------------------- /tools/bash/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bash/download.sh -------------------------------------------------------------------------------- /tools/bash/fetch-prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bash/fetch-prebuilt.sh -------------------------------------------------------------------------------- /tools/bash/identify-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bash/identify-os.sh -------------------------------------------------------------------------------- /tools/bash/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bash/log.sh -------------------------------------------------------------------------------- /tools/bootstrap-shim.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/bootstrap-shim.r -------------------------------------------------------------------------------- /tools/c-lexicals.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/c-lexicals.r -------------------------------------------------------------------------------- /tools/cflags-map.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/cflags-map.r -------------------------------------------------------------------------------- /tools/common-emitter.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/common-emitter.r -------------------------------------------------------------------------------- /tools/common-parsers.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/common-parsers.r -------------------------------------------------------------------------------- /tools/common.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/common.r -------------------------------------------------------------------------------- /tools/file-base.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/file-base.r -------------------------------------------------------------------------------- /tools/import-shim.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/import-shim.r -------------------------------------------------------------------------------- /tools/make-boot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-boot.r -------------------------------------------------------------------------------- /tools/make-extensions-table.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-extensions-table.r -------------------------------------------------------------------------------- /tools/make-headers.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-headers.r -------------------------------------------------------------------------------- /tools/make-librebol.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-librebol.r -------------------------------------------------------------------------------- /tools/make-natives.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-natives.r -------------------------------------------------------------------------------- /tools/make-types.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-types.r -------------------------------------------------------------------------------- /tools/make-zlib.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/make-zlib.r -------------------------------------------------------------------------------- /tools/native-emitters.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/native-emitters.r -------------------------------------------------------------------------------- /tools/parsing-tools.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/parsing-tools.r -------------------------------------------------------------------------------- /tools/platforms.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/platforms.r -------------------------------------------------------------------------------- /tools/prep-extension.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/prep-extension.r -------------------------------------------------------------------------------- /tools/read-deep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/read-deep.r -------------------------------------------------------------------------------- /tools/rebmake.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/rebmake.r -------------------------------------------------------------------------------- /tools/text-lines.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaeducation/ren-c/HEAD/tools/text-lines.r --------------------------------------------------------------------------------