Move implementations into impls/ dir
authorJoel Martin <github@martintribe.org>
Tue, 11 Feb 2020 05:50:16 +0000 (23:50 -0600)
committerJoel Martin <github@martintribe.org>
Tue, 11 Feb 2020 05:50:16 +0000 (23:50 -0600)
commit8a19f603868e36b9af8eb705f01bb96297cb65d0
treeef0f5fd5636bd0e781fc95b3d70735dda5860a4f
parent88869410d755e723d4010d1e3300b9c065da5339
Move implementations into impls/ dir

- Reorder README to have implementation list after "learning tool"
  bullet.

- This also moves tests/ and libs/ into impls. It would be preferrable
  to have these directories at the top level.  However, this causes
  difficulties with the wasm implementations which need pre-open
  directories and have trouble with paths starting with "../../". So
  in lieu of that, symlink those directories to the top-level.

- Move the run_argv_test.sh script into the tests directory for
  general hygiene.
2143 files changed:
.gitignore
.travis_test.sh
Makefile
README.md
impls/.gitignore [copied from .gitignore with 100% similarity]
impls/ada.2/Dockerfile [moved from ada.2/Dockerfile with 100% similarity]
impls/ada.2/Makefile [moved from ada.2/Makefile with 100% similarity]
impls/ada.2/README [moved from ada.2/README with 100% similarity]
impls/ada.2/core.adb [moved from ada.2/core.adb with 100% similarity]
impls/ada.2/core.ads [moved from ada.2/core.ads with 100% similarity]
impls/ada.2/envs.adb [moved from ada.2/envs.adb with 100% similarity]
impls/ada.2/envs.ads [moved from ada.2/envs.ads with 100% similarity]
impls/ada.2/err.adb [moved from ada.2/err.adb with 100% similarity]
impls/ada.2/err.ads [moved from ada.2/err.ads with 100% similarity]
impls/ada.2/garbage_collected.adb [moved from ada.2/garbage_collected.adb with 100% similarity]
impls/ada.2/garbage_collected.ads [moved from ada.2/garbage_collected.ads with 100% similarity]
impls/ada.2/printer.adb [moved from ada.2/printer.adb with 100% similarity]
impls/ada.2/printer.ads [moved from ada.2/printer.ads with 100% similarity]
impls/ada.2/reader.adb [moved from ada.2/reader.adb with 100% similarity]
impls/ada.2/reader.ads [moved from ada.2/reader.ads with 100% similarity]
impls/ada.2/readline.adb [moved from ada.2/readline.adb with 100% similarity]
impls/ada.2/readline.ads [moved from ada.2/readline.ads with 100% similarity]
impls/ada.2/run [moved from ada.2/run with 100% similarity]
impls/ada.2/step0_repl.adb [moved from ada.2/step0_repl.adb with 100% similarity]
impls/ada.2/step1_read_print.adb [moved from ada.2/step1_read_print.adb with 100% similarity]
impls/ada.2/step2_eval.adb [moved from ada.2/step2_eval.adb with 100% similarity]
impls/ada.2/step3_env.adb [moved from ada.2/step3_env.adb with 100% similarity]
impls/ada.2/step4_if_fn_do.adb [moved from ada.2/step4_if_fn_do.adb with 100% similarity]
impls/ada.2/step5_tco.adb [moved from ada.2/step5_tco.adb with 100% similarity]
impls/ada.2/step6_file.adb [moved from ada.2/step6_file.adb with 100% similarity]
impls/ada.2/step7_quote.adb [moved from ada.2/step7_quote.adb with 100% similarity]
impls/ada.2/step8_macros.adb [moved from ada.2/step8_macros.adb with 100% similarity]
impls/ada.2/step9_try.adb [moved from ada.2/step9_try.adb with 100% similarity]
impls/ada.2/stepa_mal.adb [moved from ada.2/stepa_mal.adb with 100% similarity]
impls/ada.2/types-atoms.adb [moved from ada.2/types-atoms.adb with 100% similarity]
impls/ada.2/types-atoms.ads [moved from ada.2/types-atoms.ads with 100% similarity]
impls/ada.2/types-builtins.adb [moved from ada.2/types-builtins.adb with 100% similarity]
impls/ada.2/types-builtins.ads [moved from ada.2/types-builtins.ads with 100% similarity]
impls/ada.2/types-fns.adb [moved from ada.2/types-fns.adb with 100% similarity]
impls/ada.2/types-fns.ads [moved from ada.2/types-fns.ads with 100% similarity]
impls/ada.2/types-maps.adb [moved from ada.2/types-maps.adb with 100% similarity]
impls/ada.2/types-maps.ads [moved from ada.2/types-maps.ads with 100% similarity]
impls/ada.2/types-sequences.adb [moved from ada.2/types-sequences.adb with 100% similarity]
impls/ada.2/types-sequences.ads [moved from ada.2/types-sequences.ads with 100% similarity]
impls/ada.2/types-strings.adb [moved from ada.2/types-strings.adb with 100% similarity]
impls/ada.2/types-strings.ads [moved from ada.2/types-strings.ads with 100% similarity]
impls/ada.2/types.adb [moved from ada.2/types.adb with 100% similarity]
impls/ada.2/types.ads [moved from ada.2/types.ads with 100% similarity]
impls/ada/Dockerfile [moved from ada/Dockerfile with 100% similarity]
impls/ada/Makefile [moved from ada/Makefile with 100% similarity]
impls/ada/core.adb [moved from ada/core.adb with 100% similarity]
impls/ada/core.ads [moved from ada/core.ads with 100% similarity]
impls/ada/envs.adb [moved from ada/envs.adb with 100% similarity]
impls/ada/envs.ads [moved from ada/envs.ads with 100% similarity]
impls/ada/eval_callback.ads [moved from ada/eval_callback.ads with 100% similarity]
impls/ada/printer.adb [moved from ada/printer.adb with 100% similarity]
impls/ada/printer.ads [moved from ada/printer.ads with 100% similarity]
impls/ada/reader.adb [moved from ada/reader.adb with 100% similarity]
impls/ada/reader.ads [moved from ada/reader.ads with 100% similarity]
impls/ada/run [moved from ada/run with 100% similarity]
impls/ada/smart_pointers.adb [moved from ada/smart_pointers.adb with 100% similarity]
impls/ada/smart_pointers.ads [moved from ada/smart_pointers.ads with 100% similarity]
impls/ada/step0_repl.adb [moved from ada/step0_repl.adb with 100% similarity]
impls/ada/step1_read_print.adb [moved from ada/step1_read_print.adb with 100% similarity]
impls/ada/step2_eval.adb [moved from ada/step2_eval.adb with 100% similarity]
impls/ada/step3_env.adb [moved from ada/step3_env.adb with 100% similarity]
impls/ada/step4_if_fn_do.adb [moved from ada/step4_if_fn_do.adb with 100% similarity]
impls/ada/step5_tco.adb [moved from ada/step5_tco.adb with 100% similarity]
impls/ada/step6_file.adb [moved from ada/step6_file.adb with 100% similarity]
impls/ada/step7_quote.adb [moved from ada/step7_quote.adb with 100% similarity]
impls/ada/step8_macros.adb [moved from ada/step8_macros.adb with 100% similarity]
impls/ada/step9_try.adb [moved from ada/step9_try.adb with 100% similarity]
impls/ada/stepa_mal.adb [moved from ada/stepa_mal.adb with 100% similarity]
impls/ada/types-hash_map.adb [moved from ada/types-hash_map.adb with 100% similarity]
impls/ada/types-hash_map.ads [moved from ada/types-hash_map.ads with 100% similarity]
impls/ada/types-vector.adb [moved from ada/types-vector.adb with 100% similarity]
impls/ada/types-vector.ads [moved from ada/types-vector.ads with 100% similarity]
impls/ada/types.adb [moved from ada/types.adb with 100% similarity]
impls/ada/types.ads [moved from ada/types.ads with 100% similarity]
impls/awk/Dockerfile [moved from awk/Dockerfile with 100% similarity]
impls/awk/Makefile [moved from awk/Makefile with 100% similarity]
impls/awk/core.awk [moved from awk/core.awk with 100% similarity]
impls/awk/env.awk [moved from awk/env.awk with 100% similarity]
impls/awk/printer.awk [moved from awk/printer.awk with 100% similarity]
impls/awk/reader.awk [moved from awk/reader.awk with 100% similarity]
impls/awk/run [moved from awk/run with 100% similarity]
impls/awk/step0_repl.awk [moved from awk/step0_repl.awk with 100% similarity]
impls/awk/step1_read_print.awk [moved from awk/step1_read_print.awk with 100% similarity]
impls/awk/step2_eval.awk [moved from awk/step2_eval.awk with 100% similarity]
impls/awk/step3_env.awk [moved from awk/step3_env.awk with 100% similarity]
impls/awk/step4_if_fn_do.awk [moved from awk/step4_if_fn_do.awk with 100% similarity]
impls/awk/step5_tco.awk [moved from awk/step5_tco.awk with 100% similarity]
impls/awk/step6_file.awk [moved from awk/step6_file.awk with 100% similarity]
impls/awk/step7_quote.awk [moved from awk/step7_quote.awk with 100% similarity]
impls/awk/step8_macros.awk [moved from awk/step8_macros.awk with 100% similarity]
impls/awk/step9_try.awk [moved from awk/step9_try.awk with 100% similarity]
impls/awk/stepA_mal.awk [moved from awk/stepA_mal.awk with 100% similarity]
impls/awk/tests/step5_tco.mal [moved from awk/tests/step5_tco.mal with 100% similarity]
impls/awk/types.awk [moved from awk/types.awk with 100% similarity]
impls/bash/Dockerfile [moved from bash/Dockerfile with 100% similarity]
impls/bash/Makefile [moved from bash/Makefile with 100% similarity]
impls/bash/core.sh [moved from bash/core.sh with 100% similarity]
impls/bash/env.sh [moved from bash/env.sh with 100% similarity]
impls/bash/printer.sh [moved from bash/printer.sh with 100% similarity]
impls/bash/reader.sh [moved from bash/reader.sh with 100% similarity]
impls/bash/run [moved from bash/run with 100% similarity]
impls/bash/step0_repl.sh [moved from bash/step0_repl.sh with 100% similarity]
impls/bash/step1_read_print.sh [moved from bash/step1_read_print.sh with 100% similarity]
impls/bash/step2_eval.sh [moved from bash/step2_eval.sh with 100% similarity]
impls/bash/step3_env.sh [moved from bash/step3_env.sh with 100% similarity]
impls/bash/step4_if_fn_do.sh [moved from bash/step4_if_fn_do.sh with 100% similarity]
impls/bash/step5_tco.sh [moved from bash/step5_tco.sh with 100% similarity]
impls/bash/step6_file.sh [moved from bash/step6_file.sh with 100% similarity]
impls/bash/step7_quote.sh [moved from bash/step7_quote.sh with 100% similarity]
impls/bash/step8_macros.sh [moved from bash/step8_macros.sh with 100% similarity]
impls/bash/step9_try.sh [moved from bash/step9_try.sh with 100% similarity]
impls/bash/stepA_mal.sh [moved from bash/stepA_mal.sh with 100% similarity]
impls/bash/tests/stepA_mal.mal [moved from bash/tests/stepA_mal.mal with 100% similarity]
impls/bash/types.sh [moved from bash/types.sh with 100% similarity]
impls/basic/.args.mal [moved from basic/.args.mal with 100% similarity]
impls/basic/Dockerfile [moved from basic/Dockerfile with 100% similarity]
impls/basic/Makefile [moved from basic/Makefile with 100% similarity]
impls/basic/basicpp.py [moved from basic/basicpp.py with 100% similarity]
impls/basic/cbmbasic_console.patch [moved from basic/cbmbasic_console.patch with 100% similarity]
impls/basic/core.in.bas [moved from basic/core.in.bas with 100% similarity]
impls/basic/debug.in.bas [moved from basic/debug.in.bas with 100% similarity]
impls/basic/env.in.bas [moved from basic/env.in.bas with 100% similarity]
impls/basic/mem.in.bas [moved from basic/mem.in.bas with 100% similarity]
impls/basic/printer.in.bas [moved from basic/printer.in.bas with 100% similarity]
impls/basic/reader.in.bas [moved from basic/reader.in.bas with 100% similarity]
impls/basic/readline.in.bas [moved from basic/readline.in.bas with 100% similarity]
impls/basic/readline_char.in.bas [moved from basic/readline_char.in.bas with 100% similarity]
impls/basic/readline_line.in.bas [moved from basic/readline_line.in.bas with 100% similarity]
impls/basic/run [moved from basic/run with 100% similarity]
impls/basic/step0_repl.in.bas [moved from basic/step0_repl.in.bas with 100% similarity]
impls/basic/step1_read_print.in.bas [moved from basic/step1_read_print.in.bas with 100% similarity]
impls/basic/step2_eval.in.bas [moved from basic/step2_eval.in.bas with 100% similarity]
impls/basic/step3_env.in.bas [moved from basic/step3_env.in.bas with 100% similarity]
impls/basic/step4_if_fn_do.in.bas [moved from basic/step4_if_fn_do.in.bas with 100% similarity]
impls/basic/step5_tco.in.bas [moved from basic/step5_tco.in.bas with 100% similarity]
impls/basic/step6_file.in.bas [moved from basic/step6_file.in.bas with 100% similarity]
impls/basic/step7_quote.in.bas [moved from basic/step7_quote.in.bas with 100% similarity]
impls/basic/step8_macros.in.bas [moved from basic/step8_macros.in.bas with 100% similarity]
impls/basic/step9_try.in.bas [moved from basic/step9_try.in.bas with 100% similarity]
impls/basic/stepA_mal.in.bas [moved from basic/stepA_mal.in.bas with 100% similarity]
impls/basic/types.in.bas [moved from basic/types.in.bas with 100% similarity]
impls/basic/variables.txt [moved from basic/variables.txt with 100% similarity]
impls/bbc-basic/Dockerfile [moved from bbc-basic/Dockerfile with 100% similarity]
impls/bbc-basic/Makefile [moved from bbc-basic/Makefile with 100% similarity]
impls/bbc-basic/README.md [moved from bbc-basic/README.md with 100% similarity]
impls/bbc-basic/core [moved from bbc-basic/core with 100% similarity]
impls/bbc-basic/core.bas [moved from bbc-basic/core.bas with 100% similarity]
impls/bbc-basic/env [moved from bbc-basic/env with 100% similarity]
impls/bbc-basic/env.bas [moved from bbc-basic/env.bas with 100% similarity]
impls/bbc-basic/printer [moved from bbc-basic/printer with 100% similarity]
impls/bbc-basic/printer.bas [moved from bbc-basic/printer.bas with 100% similarity]
impls/bbc-basic/reader [moved from bbc-basic/reader with 100% similarity]
impls/bbc-basic/reader.bas [moved from bbc-basic/reader.bas with 100% similarity]
impls/bbc-basic/riscos/.gitignore [moved from bbc-basic/riscos/.gitignore with 100% similarity]
impls/bbc-basic/riscos/setup,feb [moved from bbc-basic/riscos/setup,feb with 100% similarity]
impls/bbc-basic/riscos/tokenize,ffe [moved from bbc-basic/riscos/tokenize,ffe with 100% similarity]
impls/bbc-basic/run [moved from bbc-basic/run with 100% similarity]
impls/bbc-basic/step0_repl.bas [moved from bbc-basic/step0_repl.bas with 100% similarity]
impls/bbc-basic/step1_read_print.bas [moved from bbc-basic/step1_read_print.bas with 100% similarity]
impls/bbc-basic/step2_eval.bas [moved from bbc-basic/step2_eval.bas with 100% similarity]
impls/bbc-basic/step3_env.bas [moved from bbc-basic/step3_env.bas with 100% similarity]
impls/bbc-basic/step4_if_fn_do.bas [moved from bbc-basic/step4_if_fn_do.bas with 100% similarity]
impls/bbc-basic/step5_tco.bas [moved from bbc-basic/step5_tco.bas with 100% similarity]
impls/bbc-basic/step6_file.bas [moved from bbc-basic/step6_file.bas with 100% similarity]
impls/bbc-basic/step7_quote.bas [moved from bbc-basic/step7_quote.bas with 100% similarity]
impls/bbc-basic/step8_macros.bas [moved from bbc-basic/step8_macros.bas with 100% similarity]
impls/bbc-basic/step9_try.bas [moved from bbc-basic/step9_try.bas with 100% similarity]
impls/bbc-basic/stepA_mal.bas [moved from bbc-basic/stepA_mal.bas with 100% similarity]
impls/bbc-basic/types [moved from bbc-basic/types with 100% similarity]
impls/bbc-basic/types.bas [moved from bbc-basic/types.bas with 100% similarity]
impls/c/Dockerfile [moved from c/Dockerfile with 100% similarity]
impls/c/Makefile [moved from c/Makefile with 100% similarity]
impls/c/core.c [moved from c/core.c with 100% similarity]
impls/c/core.h [moved from c/core.h with 100% similarity]
impls/c/env.c [moved from c/env.c with 100% similarity]
impls/c/interop.c [moved from c/interop.c with 100% similarity]
impls/c/interop.h [moved from c/interop.h with 100% similarity]
impls/c/printer.c [moved from c/printer.c with 100% similarity]
impls/c/printer.h [moved from c/printer.h with 100% similarity]
impls/c/reader.c [moved from c/reader.c with 100% similarity]
impls/c/reader.h [moved from c/reader.h with 100% similarity]
impls/c/readline.c [moved from c/readline.c with 100% similarity]
impls/c/readline.h [moved from c/readline.h with 100% similarity]
impls/c/run [moved from c/run with 100% similarity]
impls/c/step0_repl.c [moved from c/step0_repl.c with 100% similarity]
impls/c/step1_read_print.c [moved from c/step1_read_print.c with 100% similarity]
impls/c/step2_eval.c [moved from c/step2_eval.c with 100% similarity]
impls/c/step3_env.c [moved from c/step3_env.c with 100% similarity]
impls/c/step4_if_fn_do.c [moved from c/step4_if_fn_do.c with 100% similarity]
impls/c/step5_tco.c [moved from c/step5_tco.c with 100% similarity]
impls/c/step6_file.c [moved from c/step6_file.c with 100% similarity]
impls/c/step7_quote.c [moved from c/step7_quote.c with 100% similarity]
impls/c/step8_macros.c [moved from c/step8_macros.c with 100% similarity]
impls/c/step9_try.c [moved from c/step9_try.c with 100% similarity]
impls/c/stepA_mal.c [moved from c/stepA_mal.c with 100% similarity]
impls/c/tests/step5_tco.mal [moved from c/tests/step5_tco.mal with 100% similarity]
impls/c/tests/stepA_mal.mal [moved from c/tests/stepA_mal.mal with 100% similarity]
impls/c/types.c [moved from c/types.c with 100% similarity]
impls/c/types.h [moved from c/types.h with 100% similarity]
impls/chuck/Dockerfile [moved from chuck/Dockerfile with 100% similarity]
impls/chuck/Makefile [moved from chuck/Makefile with 100% similarity]
impls/chuck/chuck.md [moved from chuck/chuck.md with 100% similarity]
impls/chuck/core.ck [moved from chuck/core.ck with 100% similarity]
impls/chuck/env.ck [moved from chuck/env.ck with 100% similarity]
impls/chuck/func.ck [moved from chuck/func.ck with 100% similarity]
impls/chuck/notes.md [moved from chuck/notes.md with 100% similarity]
impls/chuck/printer.ck [moved from chuck/printer.ck with 100% similarity]
impls/chuck/reader.ck [moved from chuck/reader.ck with 100% similarity]
impls/chuck/readline.ck [moved from chuck/readline.ck with 100% similarity]
impls/chuck/run [moved from chuck/run with 100% similarity]
impls/chuck/step0_repl.ck [moved from chuck/step0_repl.ck with 100% similarity]
impls/chuck/step1_read_print.ck [moved from chuck/step1_read_print.ck with 100% similarity]
impls/chuck/step2_eval.ck [moved from chuck/step2_eval.ck with 100% similarity]
impls/chuck/step3_env.ck [moved from chuck/step3_env.ck with 100% similarity]
impls/chuck/step4_if_fn_do.ck [moved from chuck/step4_if_fn_do.ck with 100% similarity]
impls/chuck/step5_tco.ck [moved from chuck/step5_tco.ck with 100% similarity]
impls/chuck/step6_file.ck [moved from chuck/step6_file.ck with 100% similarity]
impls/chuck/step7_quote.ck [moved from chuck/step7_quote.ck with 100% similarity]
impls/chuck/step8_macros.ck [moved from chuck/step8_macros.ck with 100% similarity]
impls/chuck/step9_try.ck [moved from chuck/step9_try.ck with 100% similarity]
impls/chuck/stepA_mal.ck [moved from chuck/stepA_mal.ck with 100% similarity]
impls/chuck/tests/step5_tco.mal [moved from chuck/tests/step5_tco.mal with 100% similarity]
impls/chuck/types/MalObject.ck [moved from chuck/types/MalObject.ck with 100% similarity]
impls/chuck/types/MalSubr.ck [moved from chuck/types/MalSubr.ck with 100% similarity]
impls/chuck/types/boxed/Int.ck [moved from chuck/types/boxed/Int.ck with 100% similarity]
impls/chuck/types/boxed/String.ck [moved from chuck/types/boxed/String.ck with 100% similarity]
impls/chuck/types/mal/MalAtom.ck [moved from chuck/types/mal/MalAtom.ck with 100% similarity]
impls/chuck/types/mal/MalError.ck [moved from chuck/types/mal/MalError.ck with 100% similarity]
impls/chuck/types/mal/MalFalse.ck [moved from chuck/types/mal/MalFalse.ck with 100% similarity]
impls/chuck/types/mal/MalHashMap.ck [moved from chuck/types/mal/MalHashMap.ck with 100% similarity]
impls/chuck/types/mal/MalInt.ck [moved from chuck/types/mal/MalInt.ck with 100% similarity]
impls/chuck/types/mal/MalKeyword.ck [moved from chuck/types/mal/MalKeyword.ck with 100% similarity]
impls/chuck/types/mal/MalList.ck [moved from chuck/types/mal/MalList.ck with 100% similarity]
impls/chuck/types/mal/MalNil.ck [moved from chuck/types/mal/MalNil.ck with 100% similarity]
impls/chuck/types/mal/MalString.ck [moved from chuck/types/mal/MalString.ck with 100% similarity]
impls/chuck/types/mal/MalSymbol.ck [moved from chuck/types/mal/MalSymbol.ck with 100% similarity]
impls/chuck/types/mal/MalTrue.ck [moved from chuck/types/mal/MalTrue.ck with 100% similarity]
impls/chuck/types/mal/MalVector.ck [moved from chuck/types/mal/MalVector.ck with 100% similarity]
impls/chuck/types/subr/MalAdd.ck [moved from chuck/types/subr/MalAdd.ck with 100% similarity]
impls/chuck/types/subr/MalApply.ck [moved from chuck/types/subr/MalApply.ck with 100% similarity]
impls/chuck/types/subr/MalAssoc.ck [moved from chuck/types/subr/MalAssoc.ck with 100% similarity]
impls/chuck/types/subr/MalAtomify.ck [moved from chuck/types/subr/MalAtomify.ck with 100% similarity]
impls/chuck/types/subr/MalConcat.ck [moved from chuck/types/subr/MalConcat.ck with 100% similarity]
impls/chuck/types/subr/MalConj.ck [moved from chuck/types/subr/MalConj.ck with 100% similarity]
impls/chuck/types/subr/MalCons.ck [moved from chuck/types/subr/MalCons.ck with 100% similarity]
impls/chuck/types/subr/MalCount.ck [moved from chuck/types/subr/MalCount.ck with 100% similarity]
impls/chuck/types/subr/MalDeref.ck [moved from chuck/types/subr/MalDeref.ck with 100% similarity]
impls/chuck/types/subr/MalDissoc.ck [moved from chuck/types/subr/MalDissoc.ck with 100% similarity]
impls/chuck/types/subr/MalDiv.ck [moved from chuck/types/subr/MalDiv.ck with 100% similarity]
impls/chuck/types/subr/MalDoReset.ck [moved from chuck/types/subr/MalDoReset.ck with 100% similarity]
impls/chuck/types/subr/MalDoSwap.ck [moved from chuck/types/subr/MalDoSwap.ck with 100% similarity]
impls/chuck/types/subr/MalEqual.ck [moved from chuck/types/subr/MalEqual.ck with 100% similarity]
impls/chuck/types/subr/MalFirst.ck [moved from chuck/types/subr/MalFirst.ck with 100% similarity]
impls/chuck/types/subr/MalGet.ck [moved from chuck/types/subr/MalGet.ck with 100% similarity]
impls/chuck/types/subr/MalGreater.ck [moved from chuck/types/subr/MalGreater.ck with 100% similarity]
impls/chuck/types/subr/MalGreaterEqual.ck [moved from chuck/types/subr/MalGreaterEqual.ck with 100% similarity]
impls/chuck/types/subr/MalHashMapify.ck [moved from chuck/types/subr/MalHashMapify.ck with 100% similarity]
impls/chuck/types/subr/MalIsAtom.ck [moved from chuck/types/subr/MalIsAtom.ck with 100% similarity]
impls/chuck/types/subr/MalIsContains.ck [moved from chuck/types/subr/MalIsContains.ck with 100% similarity]
impls/chuck/types/subr/MalIsEmpty.ck [moved from chuck/types/subr/MalIsEmpty.ck with 100% similarity]
impls/chuck/types/subr/MalIsFalse.ck [moved from chuck/types/subr/MalIsFalse.ck with 100% similarity]
impls/chuck/types/subr/MalIsFn.ck [moved from chuck/types/subr/MalIsFn.ck with 100% similarity]
impls/chuck/types/subr/MalIsHashMap.ck [moved from chuck/types/subr/MalIsHashMap.ck with 100% similarity]
impls/chuck/types/subr/MalIsKeyword.ck [moved from chuck/types/subr/MalIsKeyword.ck with 100% similarity]
impls/chuck/types/subr/MalIsList.ck [moved from chuck/types/subr/MalIsList.ck with 100% similarity]
impls/chuck/types/subr/MalIsMacro.ck [moved from chuck/types/subr/MalIsMacro.ck with 100% similarity]
impls/chuck/types/subr/MalIsNil.ck [moved from chuck/types/subr/MalIsNil.ck with 100% similarity]
impls/chuck/types/subr/MalIsNumber.ck [moved from chuck/types/subr/MalIsNumber.ck with 100% similarity]
impls/chuck/types/subr/MalIsString.ck [moved from chuck/types/subr/MalIsString.ck with 100% similarity]
impls/chuck/types/subr/MalIsSymbol.ck [moved from chuck/types/subr/MalIsSymbol.ck with 100% similarity]
impls/chuck/types/subr/MalIsTrue.ck [moved from chuck/types/subr/MalIsTrue.ck with 100% similarity]
impls/chuck/types/subr/MalIsVector.ck [moved from chuck/types/subr/MalIsVector.ck with 100% similarity]
impls/chuck/types/subr/MalKeys.ck [moved from chuck/types/subr/MalKeys.ck with 100% similarity]
impls/chuck/types/subr/MalKeywordify.ck [moved from chuck/types/subr/MalKeywordify.ck with 100% similarity]
impls/chuck/types/subr/MalLess.ck [moved from chuck/types/subr/MalLess.ck with 100% similarity]
impls/chuck/types/subr/MalLessEqual.ck [moved from chuck/types/subr/MalLessEqual.ck with 100% similarity]
impls/chuck/types/subr/MalListify.ck [moved from chuck/types/subr/MalListify.ck with 100% similarity]
impls/chuck/types/subr/MalMap.ck [moved from chuck/types/subr/MalMap.ck with 100% similarity]
impls/chuck/types/subr/MalMeta.ck [moved from chuck/types/subr/MalMeta.ck with 100% similarity]
impls/chuck/types/subr/MalMul.ck [moved from chuck/types/subr/MalMul.ck with 100% similarity]
impls/chuck/types/subr/MalNth.ck [moved from chuck/types/subr/MalNth.ck with 100% similarity]
impls/chuck/types/subr/MalPrStr.ck [moved from chuck/types/subr/MalPrStr.ck with 100% similarity]
impls/chuck/types/subr/MalPrintln.ck [moved from chuck/types/subr/MalPrintln.ck with 100% similarity]
impls/chuck/types/subr/MalPrn.ck [moved from chuck/types/subr/MalPrn.ck with 100% similarity]
impls/chuck/types/subr/MalReadStr.ck [moved from chuck/types/subr/MalReadStr.ck with 100% similarity]
impls/chuck/types/subr/MalReadline.ck [moved from chuck/types/subr/MalReadline.ck with 100% similarity]
impls/chuck/types/subr/MalRest.ck [moved from chuck/types/subr/MalRest.ck with 100% similarity]
impls/chuck/types/subr/MalSeq.ck [moved from chuck/types/subr/MalSeq.ck with 100% similarity]
impls/chuck/types/subr/MalSequential.ck [moved from chuck/types/subr/MalSequential.ck with 100% similarity]
impls/chuck/types/subr/MalSlurp.ck [moved from chuck/types/subr/MalSlurp.ck with 100% similarity]
impls/chuck/types/subr/MalStr.ck [moved from chuck/types/subr/MalStr.ck with 100% similarity]
impls/chuck/types/subr/MalSub.ck [moved from chuck/types/subr/MalSub.ck with 100% similarity]
impls/chuck/types/subr/MalSymbolify.ck [moved from chuck/types/subr/MalSymbolify.ck with 100% similarity]
impls/chuck/types/subr/MalThrow.ck [moved from chuck/types/subr/MalThrow.ck with 100% similarity]
impls/chuck/types/subr/MalTimeMs.ck [moved from chuck/types/subr/MalTimeMs.ck with 100% similarity]
impls/chuck/types/subr/MalVals.ck [moved from chuck/types/subr/MalVals.ck with 100% similarity]
impls/chuck/types/subr/MalVectorify.ck [moved from chuck/types/subr/MalVectorify.ck with 100% similarity]
impls/chuck/types/subr/MalWithMeta.ck [moved from chuck/types/subr/MalWithMeta.ck with 100% similarity]
impls/chuck/util/Constants.ck [moved from chuck/util/Constants.ck with 100% similarity]
impls/chuck/util/Util.ck [moved from chuck/util/Util.ck with 100% similarity]
impls/clojure/Dockerfile [moved from clojure/Dockerfile with 100% similarity]
impls/clojure/Makefile [moved from clojure/Makefile with 100% similarity]
impls/clojure/package.json [moved from clojure/package.json with 100% similarity]
impls/clojure/project.clj [moved from clojure/project.clj with 100% similarity]
impls/clojure/run [moved from clojure/run with 100% similarity]
impls/clojure/src/mal/core.cljc [moved from clojure/src/mal/core.cljc with 100% similarity]
impls/clojure/src/mal/env.cljc [moved from clojure/src/mal/env.cljc with 100% similarity]
impls/clojure/src/mal/node_readline.js [moved from clojure/src/mal/node_readline.js with 100% similarity]
impls/clojure/src/mal/printer.cljc [moved from clojure/src/mal/printer.cljc with 100% similarity]
impls/clojure/src/mal/reader.cljc [moved from clojure/src/mal/reader.cljc with 100% similarity]
impls/clojure/src/mal/readline.clj [moved from clojure/src/mal/readline.clj with 100% similarity]
impls/clojure/src/mal/readline.cljs [moved from clojure/src/mal/readline.cljs with 100% similarity]
impls/clojure/src/mal/step0_repl.cljc [moved from clojure/src/mal/step0_repl.cljc with 100% similarity]
impls/clojure/src/mal/step1_read_print.cljc [moved from clojure/src/mal/step1_read_print.cljc with 100% similarity]
impls/clojure/src/mal/step2_eval.cljc [moved from clojure/src/mal/step2_eval.cljc with 100% similarity]
impls/clojure/src/mal/step3_env.cljc [moved from clojure/src/mal/step3_env.cljc with 100% similarity]
impls/clojure/src/mal/step4_if_fn_do.cljc [moved from clojure/src/mal/step4_if_fn_do.cljc with 100% similarity]
impls/clojure/src/mal/step5_tco.cljc [moved from clojure/src/mal/step5_tco.cljc with 100% similarity]
impls/clojure/src/mal/step6_file.cljc [moved from clojure/src/mal/step6_file.cljc with 100% similarity]
impls/clojure/src/mal/step7_quote.cljc [moved from clojure/src/mal/step7_quote.cljc with 100% similarity]
impls/clojure/src/mal/step8_macros.cljc [moved from clojure/src/mal/step8_macros.cljc with 100% similarity]
impls/clojure/src/mal/step9_try.cljc [moved from clojure/src/mal/step9_try.cljc with 100% similarity]
impls/clojure/src/mal/stepA_mal.cljc [moved from clojure/src/mal/stepA_mal.cljc with 100% similarity]
impls/clojure/tests/step5_tco.mal [moved from clojure/tests/step5_tco.mal with 100% similarity]
impls/clojure/tests/stepA_mal.mal [moved from clojure/tests/stepA_mal.mal with 100% similarity]
impls/coffee/Dockerfile [moved from coffee/Dockerfile with 100% similarity]
impls/coffee/Makefile [moved from coffee/Makefile with 100% similarity]
impls/coffee/core.coffee [moved from coffee/core.coffee with 100% similarity]
impls/coffee/env.coffee [moved from coffee/env.coffee with 100% similarity]
impls/coffee/node_readline.coffee [moved from coffee/node_readline.coffee with 100% similarity]
impls/coffee/package.json [moved from coffee/package.json with 100% similarity]
impls/coffee/printer.coffee [moved from coffee/printer.coffee with 100% similarity]
impls/coffee/reader.coffee [moved from coffee/reader.coffee with 100% similarity]
impls/coffee/run [moved from coffee/run with 100% similarity]
impls/coffee/step0_repl.coffee [moved from coffee/step0_repl.coffee with 100% similarity]
impls/coffee/step1_read_print.coffee [moved from coffee/step1_read_print.coffee with 100% similarity]
impls/coffee/step2_eval.coffee [moved from coffee/step2_eval.coffee with 100% similarity]
impls/coffee/step3_env.coffee [moved from coffee/step3_env.coffee with 100% similarity]
impls/coffee/step4_if_fn_do.coffee [moved from coffee/step4_if_fn_do.coffee with 100% similarity]
impls/coffee/step5_tco.coffee [moved from coffee/step5_tco.coffee with 100% similarity]
impls/coffee/step6_file.coffee [moved from coffee/step6_file.coffee with 100% similarity]
impls/coffee/step7_quote.coffee [moved from coffee/step7_quote.coffee with 100% similarity]
impls/coffee/step8_macros.coffee [moved from coffee/step8_macros.coffee with 100% similarity]
impls/coffee/step9_try.coffee [moved from coffee/step9_try.coffee with 100% similarity]
impls/coffee/stepA_mal.coffee [moved from coffee/stepA_mal.coffee with 100% similarity]
impls/coffee/tests/step5_tco.mal [moved from coffee/tests/step5_tco.mal with 100% similarity]
impls/coffee/tests/stepA_mal.mal [moved from coffee/tests/stepA_mal.mal with 100% similarity]
impls/coffee/types.coffee [moved from coffee/types.coffee with 100% similarity]
impls/common-lisp/Dockerfile [moved from common-lisp/Dockerfile with 100% similarity]
impls/common-lisp/Makefile [moved from common-lisp/Makefile with 100% similarity]
impls/common-lisp/README.org [moved from common-lisp/README.org with 100% similarity]
impls/common-lisp/fake-readline.lisp [moved from common-lisp/fake-readline.lisp with 100% similarity]
impls/common-lisp/hist/.keepdir [moved from common-lisp/hist/.keepdir with 100% similarity]
impls/common-lisp/run [moved from common-lisp/run with 100% similarity]
impls/common-lisp/run-abcl.lisp [moved from common-lisp/run-abcl.lisp with 100% similarity]
impls/common-lisp/run-mkcl.lisp [moved from common-lisp/run-mkcl.lisp with 100% similarity]
impls/common-lisp/src/core.lisp [moved from common-lisp/src/core.lisp with 100% similarity]
impls/common-lisp/src/env.lisp [moved from common-lisp/src/env.lisp with 100% similarity]
impls/common-lisp/src/printer.lisp [moved from common-lisp/src/printer.lisp with 100% similarity]
impls/common-lisp/src/reader.lisp [moved from common-lisp/src/reader.lisp with 100% similarity]
impls/common-lisp/src/step0_repl.lisp [moved from common-lisp/src/step0_repl.lisp with 100% similarity]
impls/common-lisp/src/step1_read_print.lisp [moved from common-lisp/src/step1_read_print.lisp with 100% similarity]
impls/common-lisp/src/step2_eval.lisp [moved from common-lisp/src/step2_eval.lisp with 100% similarity]
impls/common-lisp/src/step3_env.lisp [moved from common-lisp/src/step3_env.lisp with 100% similarity]
impls/common-lisp/src/step4_if_fn_do.lisp [moved from common-lisp/src/step4_if_fn_do.lisp with 100% similarity]
impls/common-lisp/src/step5_tco.lisp [moved from common-lisp/src/step5_tco.lisp with 100% similarity]
impls/common-lisp/src/step6_file.lisp [moved from common-lisp/src/step6_file.lisp with 100% similarity]
impls/common-lisp/src/step7_quote.lisp [moved from common-lisp/src/step7_quote.lisp with 100% similarity]
impls/common-lisp/src/step8_macros.lisp [moved from common-lisp/src/step8_macros.lisp with 100% similarity]
impls/common-lisp/src/step9_try.lisp [moved from common-lisp/src/step9_try.lisp with 100% similarity]
impls/common-lisp/src/stepA_mal.lisp [moved from common-lisp/src/stepA_mal.lisp with 100% similarity]
impls/common-lisp/src/types.lisp [moved from common-lisp/src/types.lisp with 100% similarity]
impls/common-lisp/src/utils.lisp [moved from common-lisp/src/utils.lisp with 100% similarity]
impls/common-lisp/step0_repl.asd [moved from common-lisp/step0_repl.asd with 100% similarity]
impls/common-lisp/step1_read_print.asd [moved from common-lisp/step1_read_print.asd with 100% similarity]
impls/common-lisp/step2_eval.asd [moved from common-lisp/step2_eval.asd with 100% similarity]
impls/common-lisp/step3_env.asd [moved from common-lisp/step3_env.asd with 100% similarity]
impls/common-lisp/step4_if_fn_do.asd [moved from common-lisp/step4_if_fn_do.asd with 100% similarity]
impls/common-lisp/step5_tco.asd [moved from common-lisp/step5_tco.asd with 100% similarity]
impls/common-lisp/step6_file.asd [moved from common-lisp/step6_file.asd with 100% similarity]
impls/common-lisp/step7_quote.asd [moved from common-lisp/step7_quote.asd with 100% similarity]
impls/common-lisp/step8_macros.asd [moved from common-lisp/step8_macros.asd with 100% similarity]
impls/common-lisp/step9_try.asd [moved from common-lisp/step9_try.asd with 100% similarity]
impls/common-lisp/stepA_mal.asd [moved from common-lisp/stepA_mal.asd with 100% similarity]
impls/common-lisp/tests/stepA_mal.mal [moved from common-lisp/tests/stepA_mal.mal with 100% similarity]
impls/cpp/.gitignore [moved from cpp/.gitignore with 100% similarity]
impls/cpp/Core.cpp [moved from cpp/Core.cpp with 100% similarity]
impls/cpp/Debug.h [moved from cpp/Debug.h with 100% similarity]
impls/cpp/Dockerfile [moved from cpp/Dockerfile with 100% similarity]
impls/cpp/Environment.cpp [moved from cpp/Environment.cpp with 100% similarity]
impls/cpp/Environment.h [moved from cpp/Environment.h with 100% similarity]
impls/cpp/MAL.h [moved from cpp/MAL.h with 100% similarity]
impls/cpp/Makefile [moved from cpp/Makefile with 100% similarity]
impls/cpp/README.md [moved from cpp/README.md with 100% similarity]
impls/cpp/ReadLine.cpp [moved from cpp/ReadLine.cpp with 100% similarity]
impls/cpp/ReadLine.h [moved from cpp/ReadLine.h with 100% similarity]
impls/cpp/Reader.cpp [moved from cpp/Reader.cpp with 100% similarity]
impls/cpp/RefCountedPtr.h [moved from cpp/RefCountedPtr.h with 100% similarity]
impls/cpp/StaticList.h [moved from cpp/StaticList.h with 100% similarity]
impls/cpp/String.cpp [moved from cpp/String.cpp with 100% similarity]
impls/cpp/String.h [moved from cpp/String.h with 100% similarity]
impls/cpp/Types.cpp [moved from cpp/Types.cpp with 100% similarity]
impls/cpp/Types.h [moved from cpp/Types.h with 100% similarity]
impls/cpp/Validation.cpp [moved from cpp/Validation.cpp with 100% similarity]
impls/cpp/Validation.h [moved from cpp/Validation.h with 100% similarity]
impls/cpp/docker.sh [moved from cpp/docker.sh with 100% similarity]
impls/cpp/run [moved from cpp/run with 100% similarity]
impls/cpp/step0_repl.cpp [moved from cpp/step0_repl.cpp with 100% similarity]
impls/cpp/step1_read_print.cpp [moved from cpp/step1_read_print.cpp with 100% similarity]
impls/cpp/step2_eval.cpp [moved from cpp/step2_eval.cpp with 100% similarity]
impls/cpp/step3_env.cpp [moved from cpp/step3_env.cpp with 100% similarity]
impls/cpp/step4_if_fn_do.cpp [moved from cpp/step4_if_fn_do.cpp with 100% similarity]
impls/cpp/step5_tco.cpp [moved from cpp/step5_tco.cpp with 100% similarity]
impls/cpp/step6_file.cpp [moved from cpp/step6_file.cpp with 100% similarity]
impls/cpp/step7_quote.cpp [moved from cpp/step7_quote.cpp with 100% similarity]
impls/cpp/step8_macros.cpp [moved from cpp/step8_macros.cpp with 100% similarity]
impls/cpp/step9_try.cpp [moved from cpp/step9_try.cpp with 100% similarity]
impls/cpp/stepA_mal.cpp [moved from cpp/stepA_mal.cpp with 100% similarity]
impls/cpp/tests/step5_tco.mal [moved from cpp/tests/step5_tco.mal with 100% similarity]
impls/crystal/Dockerfile [moved from crystal/Dockerfile with 100% similarity]
impls/crystal/Makefile [moved from crystal/Makefile with 100% similarity]
impls/crystal/core.cr [moved from crystal/core.cr with 100% similarity]
impls/crystal/env.cr [moved from crystal/env.cr with 100% similarity]
impls/crystal/error.cr [moved from crystal/error.cr with 100% similarity]
impls/crystal/printer.cr [moved from crystal/printer.cr with 100% similarity]
impls/crystal/reader.cr [moved from crystal/reader.cr with 100% similarity]
impls/crystal/run [moved from crystal/run with 100% similarity]
impls/crystal/step0_repl.cr [moved from crystal/step0_repl.cr with 100% similarity]
impls/crystal/step1_read_print.cr [moved from crystal/step1_read_print.cr with 100% similarity]
impls/crystal/step2_eval.cr [moved from crystal/step2_eval.cr with 100% similarity]
impls/crystal/step3_env.cr [moved from crystal/step3_env.cr with 100% similarity]
impls/crystal/step4_if_fn_do.cr [moved from crystal/step4_if_fn_do.cr with 100% similarity]
impls/crystal/step5_tco.cr [moved from crystal/step5_tco.cr with 100% similarity]
impls/crystal/step6_file.cr [moved from crystal/step6_file.cr with 100% similarity]
impls/crystal/step7_quote.cr [moved from crystal/step7_quote.cr with 100% similarity]
impls/crystal/step8_macros.cr [moved from crystal/step8_macros.cr with 100% similarity]
impls/crystal/step9_try.cr [moved from crystal/step9_try.cr with 100% similarity]
impls/crystal/stepA_mal.cr [moved from crystal/stepA_mal.cr with 100% similarity]
impls/crystal/tests/step5_tco.mal [moved from crystal/tests/step5_tco.mal with 100% similarity]
impls/crystal/types.cr [moved from crystal/types.cr with 100% similarity]
impls/cs/Dockerfile [moved from cs/Dockerfile with 100% similarity]
impls/cs/Makefile [moved from cs/Makefile with 100% similarity]
impls/cs/core.cs [moved from cs/core.cs with 100% similarity]
impls/cs/env.cs [moved from cs/env.cs with 100% similarity]
impls/cs/getline.cs [moved from cs/getline.cs with 100% similarity]
impls/cs/interop.cs [moved from cs/interop.cs with 100% similarity]
impls/cs/printer.cs [moved from cs/printer.cs with 100% similarity]
impls/cs/reader.cs [moved from cs/reader.cs with 100% similarity]
impls/cs/readline.cs [moved from cs/readline.cs with 100% similarity]
impls/cs/run [moved from cs/run with 100% similarity]
impls/cs/step0_repl.cs [moved from cs/step0_repl.cs with 100% similarity]
impls/cs/step1_read_print.cs [moved from cs/step1_read_print.cs with 100% similarity]
impls/cs/step2_eval.cs [moved from cs/step2_eval.cs with 100% similarity]
impls/cs/step3_env.cs [moved from cs/step3_env.cs with 100% similarity]
impls/cs/step4_if_fn_do.cs [moved from cs/step4_if_fn_do.cs with 100% similarity]
impls/cs/step5_tco.cs [moved from cs/step5_tco.cs with 100% similarity]
impls/cs/step6_file.cs [moved from cs/step6_file.cs with 100% similarity]
impls/cs/step7_quote.cs [moved from cs/step7_quote.cs with 100% similarity]
impls/cs/step8_macros.cs [moved from cs/step8_macros.cs with 100% similarity]
impls/cs/step9_try.cs [moved from cs/step9_try.cs with 100% similarity]
impls/cs/stepA_mal.cs [moved from cs/stepA_mal.cs with 100% similarity]
impls/cs/tests/step5_tco.mal [moved from cs/tests/step5_tco.mal with 100% similarity]
impls/cs/types.cs [moved from cs/types.cs with 100% similarity]
impls/d/Dockerfile [moved from d/Dockerfile with 100% similarity]
impls/d/Makefile [moved from d/Makefile with 100% similarity]
impls/d/env.d [moved from d/env.d with 100% similarity]
impls/d/main.di [moved from d/main.di with 100% similarity]
impls/d/mal_core.d [moved from d/mal_core.d with 100% similarity]
impls/d/printer.d [moved from d/printer.d with 100% similarity]
impls/d/reader.d [moved from d/reader.d with 100% similarity]
impls/d/readline.d [moved from d/readline.d with 100% similarity]
impls/d/run [moved from d/run with 100% similarity]
impls/d/step0_repl.d [moved from d/step0_repl.d with 100% similarity]
impls/d/step1_read_print.d [moved from d/step1_read_print.d with 100% similarity]
impls/d/step2_eval.d [moved from d/step2_eval.d with 100% similarity]
impls/d/step3_env.d [moved from d/step3_env.d with 100% similarity]
impls/d/step4_if_fn_do.d [moved from d/step4_if_fn_do.d with 100% similarity]
impls/d/step5_tco.d [moved from d/step5_tco.d with 100% similarity]
impls/d/step6_file.d [moved from d/step6_file.d with 100% similarity]
impls/d/step7_quote.d [moved from d/step7_quote.d with 100% similarity]
impls/d/step8_macros.d [moved from d/step8_macros.d with 100% similarity]
impls/d/step9_try.d [moved from d/step9_try.d with 100% similarity]
impls/d/stepA_mal.d [moved from d/stepA_mal.d with 100% similarity]
impls/d/tests/step5_tco.mal [moved from d/tests/step5_tco.mal with 100% similarity]
impls/d/types.d [moved from d/types.d with 100% similarity]
impls/dart/.analysis_options [moved from dart/.analysis_options with 100% similarity]
impls/dart/.packages [moved from dart/.packages with 100% similarity]
impls/dart/Dockerfile [moved from dart/Dockerfile with 100% similarity]
impls/dart/Makefile [moved from dart/Makefile with 100% similarity]
impls/dart/core.dart [moved from dart/core.dart with 100% similarity]
impls/dart/env.dart [moved from dart/env.dart with 100% similarity]
impls/dart/printer.dart [moved from dart/printer.dart with 100% similarity]
impls/dart/pubspec.lock [moved from dart/pubspec.lock with 100% similarity]
impls/dart/pubspec.yaml [moved from dart/pubspec.yaml with 100% similarity]
impls/dart/reader.dart [moved from dart/reader.dart with 100% similarity]
impls/dart/run [moved from dart/run with 100% similarity]
impls/dart/step0_repl.dart [moved from dart/step0_repl.dart with 100% similarity]
impls/dart/step1_read_print.dart [moved from dart/step1_read_print.dart with 100% similarity]
impls/dart/step2_eval.dart [moved from dart/step2_eval.dart with 100% similarity]
impls/dart/step3_env.dart [moved from dart/step3_env.dart with 100% similarity]
impls/dart/step4_if_fn_do.dart [moved from dart/step4_if_fn_do.dart with 100% similarity]
impls/dart/step5_tco.dart [moved from dart/step5_tco.dart with 100% similarity]
impls/dart/step6_file.dart [moved from dart/step6_file.dart with 100% similarity]
impls/dart/step7_quote.dart [moved from dart/step7_quote.dart with 100% similarity]
impls/dart/step8_macros.dart [moved from dart/step8_macros.dart with 100% similarity]
impls/dart/step9_try.dart [moved from dart/step9_try.dart with 100% similarity]
impls/dart/stepA_mal.dart [moved from dart/stepA_mal.dart with 100% similarity]
impls/dart/types.dart [moved from dart/types.dart with 100% similarity]
impls/elisp/Dockerfile [moved from elisp/Dockerfile with 100% similarity]
impls/elisp/Makefile [moved from elisp/Makefile with 100% similarity]
impls/elisp/mal/core.el [moved from elisp/mal/core.el with 100% similarity]
impls/elisp/mal/env.el [moved from elisp/mal/env.el with 100% similarity]
impls/elisp/mal/func.el [moved from elisp/mal/func.el with 100% similarity]
impls/elisp/mal/printer.el [moved from elisp/mal/printer.el with 100% similarity]
impls/elisp/mal/reader.el [moved from elisp/mal/reader.el with 100% similarity]
impls/elisp/mal/types.el [moved from elisp/mal/types.el with 100% similarity]
impls/elisp/run [moved from elisp/run with 100% similarity]
impls/elisp/step0_repl.el [moved from elisp/step0_repl.el with 100% similarity]
impls/elisp/step1_read_print.el [moved from elisp/step1_read_print.el with 100% similarity]
impls/elisp/step2_eval.el [moved from elisp/step2_eval.el with 100% similarity]
impls/elisp/step3_env.el [moved from elisp/step3_env.el with 100% similarity]
impls/elisp/step4_if_fn_do.el [moved from elisp/step4_if_fn_do.el with 100% similarity]
impls/elisp/step5_tco.el [moved from elisp/step5_tco.el with 100% similarity]
impls/elisp/step6_file.el [moved from elisp/step6_file.el with 100% similarity]
impls/elisp/step7_quote.el [moved from elisp/step7_quote.el with 100% similarity]
impls/elisp/step8_macros.el [moved from elisp/step8_macros.el with 100% similarity]
impls/elisp/step9_try.el [moved from elisp/step9_try.el with 100% similarity]
impls/elisp/stepA_mal.el [moved from elisp/stepA_mal.el with 100% similarity]
impls/elisp/tests/step5_tco.mal [moved from elisp/tests/step5_tco.mal with 100% similarity]
impls/elisp/tests/stepA_mal.mal [moved from elisp/tests/stepA_mal.mal with 100% similarity]
impls/elixir/Dockerfile [moved from elixir/Dockerfile with 100% similarity]
impls/elixir/Makefile [moved from elixir/Makefile with 100% similarity]
impls/elixir/lib/mal.ex [moved from elixir/lib/mal.ex with 100% similarity]
impls/elixir/lib/mal/atom.ex [moved from elixir/lib/mal/atom.ex with 100% similarity]
impls/elixir/lib/mal/core.ex [moved from elixir/lib/mal/core.ex with 100% similarity]
impls/elixir/lib/mal/env.ex [moved from elixir/lib/mal/env.ex with 100% similarity]
impls/elixir/lib/mal/printer.ex [moved from elixir/lib/mal/printer.ex with 100% similarity]
impls/elixir/lib/mal/reader.ex [moved from elixir/lib/mal/reader.ex with 100% similarity]
impls/elixir/lib/mal/types.ex [moved from elixir/lib/mal/types.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step0_repl.ex [moved from elixir/lib/mix/tasks/step0_repl.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step1_read_print.ex [moved from elixir/lib/mix/tasks/step1_read_print.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step2_eval.ex [moved from elixir/lib/mix/tasks/step2_eval.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step3_env.ex [moved from elixir/lib/mix/tasks/step3_env.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step4_if_fn_do.ex [moved from elixir/lib/mix/tasks/step4_if_fn_do.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step5_tco.ex [moved from elixir/lib/mix/tasks/step5_tco.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step6_file.ex [moved from elixir/lib/mix/tasks/step6_file.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step7_quote.ex [moved from elixir/lib/mix/tasks/step7_quote.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step8_macros.ex [moved from elixir/lib/mix/tasks/step8_macros.ex with 100% similarity]
impls/elixir/lib/mix/tasks/step9_try.ex [moved from elixir/lib/mix/tasks/step9_try.ex with 100% similarity]
impls/elixir/lib/mix/tasks/stepA_mal.ex [moved from elixir/lib/mix/tasks/stepA_mal.ex with 100% similarity]
impls/elixir/mix.exs [moved from elixir/mix.exs with 100% similarity]
impls/elixir/run [moved from elixir/run with 100% similarity]
impls/elixir/tests/step5_tco.mal [moved from elixir/tests/step5_tco.mal with 100% similarity]
impls/elm/.dockerignore [moved from elm/.dockerignore with 100% similarity]
impls/elm/Core.elm [moved from elm/Core.elm with 100% similarity]
impls/elm/Dockerfile [moved from elm/Dockerfile with 100% similarity]
impls/elm/Env.elm [moved from elm/Env.elm with 100% similarity]
impls/elm/Eval.elm [moved from elm/Eval.elm with 100% similarity]
impls/elm/IO.elm [moved from elm/IO.elm with 100% similarity]
impls/elm/Makefile [moved from elm/Makefile with 100% similarity]
impls/elm/Printer.elm [moved from elm/Printer.elm with 100% similarity]
impls/elm/Reader.elm [moved from elm/Reader.elm with 100% similarity]
impls/elm/Types.elm [moved from elm/Types.elm with 100% similarity]
impls/elm/Utils.elm [moved from elm/Utils.elm with 100% similarity]
impls/elm/bootstrap.js [moved from elm/bootstrap.js with 100% similarity]
impls/elm/elm-package.json [moved from elm/elm-package.json with 100% similarity]
impls/elm/node_readline.js [moved from elm/node_readline.js with 100% similarity]
impls/elm/package.json [moved from elm/package.json with 100% similarity]
impls/elm/run [moved from elm/run with 100% similarity]
impls/elm/step0_repl.elm [moved from elm/step0_repl.elm with 100% similarity]
impls/elm/step1_read_print.elm [moved from elm/step1_read_print.elm with 100% similarity]
impls/elm/step2_eval.elm [moved from elm/step2_eval.elm with 100% similarity]
impls/elm/step3_env.elm [moved from elm/step3_env.elm with 100% similarity]
impls/elm/step4_if_fn_do.elm [moved from elm/step4_if_fn_do.elm with 100% similarity]
impls/elm/step5_tco.elm [moved from elm/step5_tco.elm with 100% similarity]
impls/elm/step6_file.elm [moved from elm/step6_file.elm with 100% similarity]
impls/elm/step7_quote.elm [moved from elm/step7_quote.elm with 100% similarity]
impls/elm/step8_macros.elm [moved from elm/step8_macros.elm with 100% similarity]
impls/elm/step9_try.elm [moved from elm/step9_try.elm with 100% similarity]
impls/elm/stepA_mal.elm [moved from elm/stepA_mal.elm with 100% similarity]
impls/erlang/Dockerfile [moved from erlang/Dockerfile with 100% similarity]
impls/erlang/Makefile [moved from erlang/Makefile with 100% similarity]
impls/erlang/rebar.config [moved from erlang/rebar.config with 100% similarity]
impls/erlang/rebar.config.script [moved from erlang/rebar.config.script with 100% similarity]
impls/erlang/run [moved from erlang/run with 100% similarity]
impls/erlang/src/atom.erl [moved from erlang/src/atom.erl with 100% similarity]
impls/erlang/src/core.erl [moved from erlang/src/core.erl with 100% similarity]
impls/erlang/src/env.erl [moved from erlang/src/env.erl with 100% similarity]
impls/erlang/src/mal.app.src [moved from erlang/src/mal.app.src with 100% similarity]
impls/erlang/src/printer.erl [moved from erlang/src/printer.erl with 100% similarity]
impls/erlang/src/reader.erl [moved from erlang/src/reader.erl with 100% similarity]
impls/erlang/src/step0_repl.erl [moved from erlang/src/step0_repl.erl with 100% similarity]
impls/erlang/src/step1_read_print.erl [moved from erlang/src/step1_read_print.erl with 100% similarity]
impls/erlang/src/step2_eval.erl [moved from erlang/src/step2_eval.erl with 100% similarity]
impls/erlang/src/step3_env.erl [moved from erlang/src/step3_env.erl with 100% similarity]
impls/erlang/src/step4_if_fn_do.erl [moved from erlang/src/step4_if_fn_do.erl with 100% similarity]
impls/erlang/src/step5_tco.erl [moved from erlang/src/step5_tco.erl with 100% similarity]
impls/erlang/src/step6_file.erl [moved from erlang/src/step6_file.erl with 100% similarity]
impls/erlang/src/step7_quote.erl [moved from erlang/src/step7_quote.erl with 100% similarity]
impls/erlang/src/step8_macros.erl [moved from erlang/src/step8_macros.erl with 100% similarity]
impls/erlang/src/step9_try.erl [moved from erlang/src/step9_try.erl with 100% similarity]
impls/erlang/src/stepA_mal.erl [moved from erlang/src/stepA_mal.erl with 100% similarity]
impls/erlang/src/types.erl [moved from erlang/src/types.erl with 100% similarity]
impls/erlang/tests/step5_tco.mal [moved from erlang/tests/step5_tco.mal with 100% similarity]
impls/es6/Dockerfile [moved from es6/Dockerfile with 100% similarity]
impls/es6/Makefile [moved from es6/Makefile with 100% similarity]
impls/es6/core.mjs [moved from es6/core.mjs with 100% similarity]
impls/es6/env.mjs [moved from es6/env.mjs with 100% similarity]
impls/es6/node_readline.js [moved from es6/node_readline.js with 100% similarity]
impls/es6/package.json [moved from es6/package.json with 100% similarity]
impls/es6/printer.mjs [moved from es6/printer.mjs with 100% similarity]
impls/es6/reader.mjs [moved from es6/reader.mjs with 100% similarity]
impls/es6/run [moved from es6/run with 100% similarity]
impls/es6/step0_repl.mjs [moved from es6/step0_repl.mjs with 100% similarity]
impls/es6/step1_read_print.mjs [moved from es6/step1_read_print.mjs with 100% similarity]
impls/es6/step2_eval.mjs [moved from es6/step2_eval.mjs with 100% similarity]
impls/es6/step3_env.mjs [moved from es6/step3_env.mjs with 100% similarity]
impls/es6/step4_if_fn_do.mjs [moved from es6/step4_if_fn_do.mjs with 100% similarity]
impls/es6/step5_tco.mjs [moved from es6/step5_tco.mjs with 100% similarity]
impls/es6/step6_file.mjs [moved from es6/step6_file.mjs with 100% similarity]
impls/es6/step7_quote.mjs [moved from es6/step7_quote.mjs with 100% similarity]
impls/es6/step8_macros.mjs [moved from es6/step8_macros.mjs with 100% similarity]
impls/es6/step9_try.mjs [moved from es6/step9_try.mjs with 100% similarity]
impls/es6/stepA_mal.mjs [moved from es6/stepA_mal.mjs with 100% similarity]
impls/es6/tests/step5_tco.mal [moved from es6/tests/step5_tco.mal with 100% similarity]
impls/es6/types.mjs [moved from es6/types.mjs with 100% similarity]
impls/factor/Dockerfile [moved from factor/Dockerfile with 100% similarity]
impls/factor/Makefile [moved from factor/Makefile with 100% similarity]
impls/factor/lib/core/core-tests.factor [moved from factor/lib/core/core-tests.factor with 100% similarity]
impls/factor/lib/core/core.factor [moved from factor/lib/core/core.factor with 100% similarity]
impls/factor/lib/env/env-tests.factor [moved from factor/lib/env/env-tests.factor with 100% similarity]
impls/factor/lib/env/env.factor [moved from factor/lib/env/env.factor with 100% similarity]
impls/factor/lib/printer/printer-tests.factor [moved from factor/lib/printer/printer-tests.factor with 100% similarity]
impls/factor/lib/printer/printer.factor [moved from factor/lib/printer/printer.factor with 100% similarity]
impls/factor/lib/reader/reader-tests.factor [moved from factor/lib/reader/reader-tests.factor with 100% similarity]
impls/factor/lib/reader/reader.factor [moved from factor/lib/reader/reader.factor with 100% similarity]
impls/factor/lib/types/types.factor [moved from factor/lib/types/types.factor with 100% similarity]
impls/factor/run [moved from factor/run with 100% similarity]
impls/factor/step0_repl/deploy.factor [moved from factor/step0_repl/deploy.factor with 100% similarity]
impls/factor/step0_repl/step0_repl.factor [moved from factor/step0_repl/step0_repl.factor with 100% similarity]
impls/factor/step1_read_print/deploy.factor [moved from factor/step1_read_print/deploy.factor with 100% similarity]
impls/factor/step1_read_print/step1_read_print.factor [moved from factor/step1_read_print/step1_read_print.factor with 100% similarity]
impls/factor/step2_eval/deploy.factor [moved from factor/step2_eval/deploy.factor with 100% similarity]
impls/factor/step2_eval/step2_eval.factor [moved from factor/step2_eval/step2_eval.factor with 100% similarity]
impls/factor/step3_env/deploy.factor [moved from factor/step3_env/deploy.factor with 100% similarity]
impls/factor/step3_env/step3_env.factor [moved from factor/step3_env/step3_env.factor with 100% similarity]
impls/factor/step4_if_fn_do/deploy.factor [moved from factor/step4_if_fn_do/deploy.factor with 100% similarity]
impls/factor/step4_if_fn_do/step4_if_fn_do.factor [moved from factor/step4_if_fn_do/step4_if_fn_do.factor with 100% similarity]
impls/factor/step5_tco/deploy.factor [moved from factor/step5_tco/deploy.factor with 100% similarity]
impls/factor/step5_tco/step5_tco.factor [moved from factor/step5_tco/step5_tco.factor with 100% similarity]
impls/factor/step6_file/deploy.factor [moved from factor/step6_file/deploy.factor with 100% similarity]
impls/factor/step6_file/step6_file.factor [moved from factor/step6_file/step6_file.factor with 100% similarity]
impls/factor/step7_quote/deploy.factor [moved from factor/step7_quote/deploy.factor with 100% similarity]
impls/factor/step7_quote/step7_quote.factor [moved from factor/step7_quote/step7_quote.factor with 100% similarity]
impls/factor/step8_macros/deploy.factor [moved from factor/step8_macros/deploy.factor with 100% similarity]
impls/factor/step8_macros/step8_macros.factor [moved from factor/step8_macros/step8_macros.factor with 100% similarity]
impls/factor/step9_try/deploy.factor [moved from factor/step9_try/deploy.factor with 100% similarity]
impls/factor/step9_try/step9_try.factor [moved from factor/step9_try/step9_try.factor with 100% similarity]
impls/factor/stepA_mal/deploy.factor [moved from factor/stepA_mal/deploy.factor with 100% similarity]
impls/factor/stepA_mal/stepA_mal.factor [moved from factor/stepA_mal/stepA_mal.factor with 100% similarity]
impls/factor/tests/step5_tco.mal [moved from factor/tests/step5_tco.mal with 100% similarity]
impls/fantom/Dockerfile [moved from fantom/Dockerfile with 100% similarity]
impls/fantom/Makefile [moved from fantom/Makefile with 100% similarity]
impls/fantom/run [moved from fantom/run with 100% similarity]
impls/fantom/src/mallib/build.fan [moved from fantom/src/mallib/build.fan with 100% similarity]
impls/fantom/src/mallib/fan/core.fan [moved from fantom/src/mallib/fan/core.fan with 100% similarity]
impls/fantom/src/mallib/fan/env.fan [moved from fantom/src/mallib/fan/env.fan with 100% similarity]
impls/fantom/src/mallib/fan/interop.fan [moved from fantom/src/mallib/fan/interop.fan with 100% similarity]
impls/fantom/src/mallib/fan/reader.fan [moved from fantom/src/mallib/fan/reader.fan with 100% similarity]
impls/fantom/src/mallib/fan/types.fan [moved from fantom/src/mallib/fan/types.fan with 100% similarity]
impls/fantom/src/step0_repl/build.fan [moved from fantom/src/step0_repl/build.fan with 100% similarity]
impls/fantom/src/step0_repl/fan/main.fan [moved from fantom/src/step0_repl/fan/main.fan with 100% similarity]
impls/fantom/src/step1_read_print/build.fan [moved from fantom/src/step1_read_print/build.fan with 100% similarity]
impls/fantom/src/step1_read_print/fan/main.fan [moved from fantom/src/step1_read_print/fan/main.fan with 100% similarity]
impls/fantom/src/step2_eval/build.fan [moved from fantom/src/step2_eval/build.fan with 100% similarity]
impls/fantom/src/step2_eval/fan/main.fan [moved from fantom/src/step2_eval/fan/main.fan with 100% similarity]
impls/fantom/src/step3_env/build.fan [moved from fantom/src/step3_env/build.fan with 100% similarity]
impls/fantom/src/step3_env/fan/main.fan [moved from fantom/src/step3_env/fan/main.fan with 100% similarity]
impls/fantom/src/step4_if_fn_do/build.fan [moved from fantom/src/step4_if_fn_do/build.fan with 100% similarity]
impls/fantom/src/step4_if_fn_do/fan/main.fan [moved from fantom/src/step4_if_fn_do/fan/main.fan with 100% similarity]
impls/fantom/src/step5_tco/build.fan [moved from fantom/src/step5_tco/build.fan with 100% similarity]
impls/fantom/src/step5_tco/fan/main.fan [moved from fantom/src/step5_tco/fan/main.fan with 100% similarity]
impls/fantom/src/step6_file/build.fan [moved from fantom/src/step6_file/build.fan with 100% similarity]
impls/fantom/src/step6_file/fan/main.fan [moved from fantom/src/step6_file/fan/main.fan with 100% similarity]
impls/fantom/src/step7_quote/build.fan [moved from fantom/src/step7_quote/build.fan with 100% similarity]
impls/fantom/src/step7_quote/fan/main.fan [moved from fantom/src/step7_quote/fan/main.fan with 100% similarity]
impls/fantom/src/step8_macros/build.fan [moved from fantom/src/step8_macros/build.fan with 100% similarity]
impls/fantom/src/step8_macros/fan/main.fan [moved from fantom/src/step8_macros/fan/main.fan with 100% similarity]
impls/fantom/src/step9_try/build.fan [moved from fantom/src/step9_try/build.fan with 100% similarity]
impls/fantom/src/step9_try/fan/main.fan [moved from fantom/src/step9_try/fan/main.fan with 100% similarity]
impls/fantom/src/stepA_mal/build.fan [moved from fantom/src/stepA_mal/build.fan with 100% similarity]
impls/fantom/src/stepA_mal/fan/main.fan [moved from fantom/src/stepA_mal/fan/main.fan with 100% similarity]
impls/fantom/tests/step5_tco.mal [moved from fantom/tests/step5_tco.mal with 100% similarity]
impls/fantom/tests/stepA_mal.mal [moved from fantom/tests/stepA_mal.mal with 100% similarity]
impls/forth/Dockerfile [moved from forth/Dockerfile with 100% similarity]
impls/forth/Makefile [moved from forth/Makefile with 100% similarity]
impls/forth/core.fs [moved from forth/core.fs with 100% similarity]
impls/forth/env.fs [moved from forth/env.fs with 100% similarity]
impls/forth/misc-tests.fs [moved from forth/misc-tests.fs with 100% similarity]
impls/forth/printer.fs [moved from forth/printer.fs with 100% similarity]
impls/forth/reader.fs [moved from forth/reader.fs with 100% similarity]
impls/forth/run [moved from forth/run with 100% similarity]
impls/forth/step0_repl.fs [moved from forth/step0_repl.fs with 100% similarity]
impls/forth/step1_read_print.fs [moved from forth/step1_read_print.fs with 100% similarity]
impls/forth/step2_eval.fs [moved from forth/step2_eval.fs with 100% similarity]
impls/forth/step3_env.fs [moved from forth/step3_env.fs with 100% similarity]
impls/forth/step4_if_fn_do.fs [moved from forth/step4_if_fn_do.fs with 100% similarity]
impls/forth/step5_tco.fs [moved from forth/step5_tco.fs with 100% similarity]
impls/forth/step6_file.fs [moved from forth/step6_file.fs with 100% similarity]
impls/forth/step7_quote.fs [moved from forth/step7_quote.fs with 100% similarity]
impls/forth/step8_macros.fs [moved from forth/step8_macros.fs with 100% similarity]
impls/forth/step9_try.fs [moved from forth/step9_try.fs with 100% similarity]
impls/forth/stepA_mal.fs [moved from forth/stepA_mal.fs with 100% similarity]
impls/forth/str.fs [moved from forth/str.fs with 100% similarity]
impls/forth/tests/step5_tco.mal [moved from forth/tests/step5_tco.mal with 100% similarity]
impls/forth/tests/stepA_mal.mal [moved from forth/tests/stepA_mal.mal with 100% similarity]
impls/forth/types.fs [moved from forth/types.fs with 100% similarity]
impls/fsharp/Dockerfile [moved from fsharp/Dockerfile with 100% similarity]
impls/fsharp/Makefile [moved from fsharp/Makefile with 100% similarity]
impls/fsharp/core.fs [moved from fsharp/core.fs with 100% similarity]
impls/fsharp/env.fs [moved from fsharp/env.fs with 100% similarity]
impls/fsharp/error.fs [moved from fsharp/error.fs with 100% similarity]
impls/fsharp/node.fs [moved from fsharp/node.fs with 100% similarity]
impls/fsharp/printer.fs [moved from fsharp/printer.fs with 100% similarity]
impls/fsharp/reader.fs [moved from fsharp/reader.fs with 100% similarity]
impls/fsharp/readline.fs [moved from fsharp/readline.fs with 100% similarity]
impls/fsharp/run [moved from fsharp/run with 100% similarity]
impls/fsharp/step0_repl.fs [moved from fsharp/step0_repl.fs with 100% similarity]
impls/fsharp/step1_read_print.fs [moved from fsharp/step1_read_print.fs with 100% similarity]
impls/fsharp/step2_eval.fs [moved from fsharp/step2_eval.fs with 100% similarity]
impls/fsharp/step3_env.fs [moved from fsharp/step3_env.fs with 100% similarity]
impls/fsharp/step4_if_fn_do.fs [moved from fsharp/step4_if_fn_do.fs with 100% similarity]
impls/fsharp/step5_tco.fs [moved from fsharp/step5_tco.fs with 100% similarity]
impls/fsharp/step6_file.fs [moved from fsharp/step6_file.fs with 100% similarity]
impls/fsharp/step7_quote.fs [moved from fsharp/step7_quote.fs with 100% similarity]
impls/fsharp/step8_macros.fs [moved from fsharp/step8_macros.fs with 100% similarity]
impls/fsharp/step9_try.fs [moved from fsharp/step9_try.fs with 100% similarity]
impls/fsharp/stepA_mal.fs [moved from fsharp/stepA_mal.fs with 100% similarity]
impls/fsharp/terminal.cs [moved from fsharp/terminal.cs with 100% similarity]
impls/fsharp/tests/step5_tco.mal [moved from fsharp/tests/step5_tco.mal with 100% similarity]
impls/fsharp/tokenizer.fs [moved from fsharp/tokenizer.fs with 100% similarity]
impls/fsharp/types.fs [moved from fsharp/types.fs with 100% similarity]
impls/gnu-smalltalk/Dockerfile [moved from gnu-smalltalk/Dockerfile with 100% similarity]
impls/gnu-smalltalk/Makefile [moved from gnu-smalltalk/Makefile with 100% similarity]
impls/gnu-smalltalk/core.st [moved from gnu-smalltalk/core.st with 100% similarity]
impls/gnu-smalltalk/env.st [moved from gnu-smalltalk/env.st with 100% similarity]
impls/gnu-smalltalk/func.st [moved from gnu-smalltalk/func.st with 100% similarity]
impls/gnu-smalltalk/printer.st [moved from gnu-smalltalk/printer.st with 100% similarity]
impls/gnu-smalltalk/reader.st [moved from gnu-smalltalk/reader.st with 100% similarity]
impls/gnu-smalltalk/readline.st [moved from gnu-smalltalk/readline.st with 100% similarity]
impls/gnu-smalltalk/run [moved from gnu-smalltalk/run with 100% similarity]
impls/gnu-smalltalk/step0_repl.st [moved from gnu-smalltalk/step0_repl.st with 100% similarity]
impls/gnu-smalltalk/step1_read_print.st [moved from gnu-smalltalk/step1_read_print.st with 100% similarity]
impls/gnu-smalltalk/step2_eval.st [moved from gnu-smalltalk/step2_eval.st with 100% similarity]
impls/gnu-smalltalk/step3_env.st [moved from gnu-smalltalk/step3_env.st with 100% similarity]
impls/gnu-smalltalk/step4_if_fn_do.st [moved from gnu-smalltalk/step4_if_fn_do.st with 100% similarity]
impls/gnu-smalltalk/step5_tco.st [moved from gnu-smalltalk/step5_tco.st with 100% similarity]
impls/gnu-smalltalk/step6_file.st [moved from gnu-smalltalk/step6_file.st with 100% similarity]
impls/gnu-smalltalk/step7_quote.st [moved from gnu-smalltalk/step7_quote.st with 100% similarity]
impls/gnu-smalltalk/step8_macros.st [moved from gnu-smalltalk/step8_macros.st with 100% similarity]
impls/gnu-smalltalk/step9_try.st [moved from gnu-smalltalk/step9_try.st with 100% similarity]
impls/gnu-smalltalk/stepA_mal.st [moved from gnu-smalltalk/stepA_mal.st with 100% similarity]
impls/gnu-smalltalk/tests/stepA_mal.mal [moved from gnu-smalltalk/tests/stepA_mal.mal with 100% similarity]
impls/gnu-smalltalk/types.st [moved from gnu-smalltalk/types.st with 100% similarity]
impls/gnu-smalltalk/util.st [moved from gnu-smalltalk/util.st with 100% similarity]
impls/go/Dockerfile [moved from go/Dockerfile with 100% similarity]
impls/go/Makefile [moved from go/Makefile with 100% similarity]
impls/go/run [moved from go/run with 100% similarity]
impls/go/src/core/core.go [moved from go/src/core/core.go with 100% similarity]
impls/go/src/env/env.go [moved from go/src/env/env.go with 100% similarity]
impls/go/src/printer/printer.go [moved from go/src/printer/printer.go with 100% similarity]
impls/go/src/reader/reader.go [moved from go/src/reader/reader.go with 100% similarity]
impls/go/src/readline/readline.go [moved from go/src/readline/readline.go with 100% similarity]
impls/go/src/step0_repl/step0_repl.go [moved from go/src/step0_repl/step0_repl.go with 100% similarity]
impls/go/src/step1_read_print/step1_read_print.go [moved from go/src/step1_read_print/step1_read_print.go with 100% similarity]
impls/go/src/step2_eval/step2_eval.go [moved from go/src/step2_eval/step2_eval.go with 100% similarity]
impls/go/src/step3_env/step3_env.go [moved from go/src/step3_env/step3_env.go with 100% similarity]
impls/go/src/step4_if_fn_do/step4_if_fn_do.go [moved from go/src/step4_if_fn_do/step4_if_fn_do.go with 100% similarity]
impls/go/src/step5_tco/step5_tco.go [moved from go/src/step5_tco/step5_tco.go with 100% similarity]
impls/go/src/step6_file/step6_file.go [moved from go/src/step6_file/step6_file.go with 100% similarity]
impls/go/src/step7_quote/step7_quote.go [moved from go/src/step7_quote/step7_quote.go with 100% similarity]
impls/go/src/step8_macros/step8_macros.go [moved from go/src/step8_macros/step8_macros.go with 100% similarity]
impls/go/src/step9_try/step9_try.go [moved from go/src/step9_try/step9_try.go with 100% similarity]
impls/go/src/stepA_mal/stepA_mal.go [moved from go/src/stepA_mal/stepA_mal.go with 100% similarity]
impls/go/src/types/types.go [moved from go/src/types/types.go with 100% similarity]
impls/go/tests/step2_eval.mal [moved from go/tests/step2_eval.mal with 100% similarity]
impls/go/tests/step4_if_fn_do.mal [moved from go/tests/step4_if_fn_do.mal with 100% similarity]
impls/go/tests/step5_tco.mal [moved from go/tests/step5_tco.mal with 100% similarity]
impls/groovy/Dockerfile [moved from groovy/Dockerfile with 100% similarity]
impls/groovy/GroovyWrapper.groovy [moved from groovy/GroovyWrapper.groovy with 100% similarity]
impls/groovy/Makefile [moved from groovy/Makefile with 100% similarity]
impls/groovy/core.groovy [moved from groovy/core.groovy with 100% similarity]
impls/groovy/env.groovy [moved from groovy/env.groovy with 100% similarity]
impls/groovy/printer.groovy [moved from groovy/printer.groovy with 100% similarity]
impls/groovy/reader.groovy [moved from groovy/reader.groovy with 100% similarity]
impls/groovy/run [moved from groovy/run with 100% similarity]
impls/groovy/step0_repl.groovy [moved from groovy/step0_repl.groovy with 100% similarity]
impls/groovy/step1_read_print.groovy [moved from groovy/step1_read_print.groovy with 100% similarity]
impls/groovy/step2_eval.groovy [moved from groovy/step2_eval.groovy with 100% similarity]
impls/groovy/step3_env.groovy [moved from groovy/step3_env.groovy with 100% similarity]
impls/groovy/step4_if_fn_do.groovy [moved from groovy/step4_if_fn_do.groovy with 100% similarity]
impls/groovy/step5_tco.groovy [moved from groovy/step5_tco.groovy with 100% similarity]
impls/groovy/step6_file.groovy [moved from groovy/step6_file.groovy with 100% similarity]
impls/groovy/step7_quote.groovy [moved from groovy/step7_quote.groovy with 100% similarity]
impls/groovy/step8_macros.groovy [moved from groovy/step8_macros.groovy with 100% similarity]
impls/groovy/step9_try.groovy [moved from groovy/step9_try.groovy with 100% similarity]
impls/groovy/stepA_mal.groovy [moved from groovy/stepA_mal.groovy with 100% similarity]
impls/groovy/tests/step5_tco.mal [moved from groovy/tests/step5_tco.mal with 100% similarity]
impls/groovy/types.groovy [moved from groovy/types.groovy with 100% similarity]
impls/guile/Dockerfile [moved from guile/Dockerfile with 100% similarity]
impls/guile/Makefile [moved from guile/Makefile with 100% similarity]
impls/guile/core.scm [moved from guile/core.scm with 100% similarity]
impls/guile/env.scm [moved from guile/env.scm with 100% similarity]
impls/guile/pcre.scm [moved from guile/pcre.scm with 100% similarity]
impls/guile/printer.scm [moved from guile/printer.scm with 100% similarity]
impls/guile/reader.scm [moved from guile/reader.scm with 100% similarity]
impls/guile/readline.scm [moved from guile/readline.scm with 100% similarity]
impls/guile/run [moved from guile/run with 100% similarity]
impls/guile/step0_repl.scm [moved from guile/step0_repl.scm with 100% similarity]
impls/guile/step1_read_print.scm [moved from guile/step1_read_print.scm with 100% similarity]
impls/guile/step2_eval.scm [moved from guile/step2_eval.scm with 100% similarity]
impls/guile/step3_env.scm [moved from guile/step3_env.scm with 100% similarity]
impls/guile/step4_if_fn_do.scm [moved from guile/step4_if_fn_do.scm with 100% similarity]
impls/guile/step5_tco.scm [moved from guile/step5_tco.scm with 100% similarity]
impls/guile/step6_file.scm [moved from guile/step6_file.scm with 100% similarity]
impls/guile/step7_quote.scm [moved from guile/step7_quote.scm with 100% similarity]
impls/guile/step8_macros.scm [moved from guile/step8_macros.scm with 100% similarity]
impls/guile/step9_try.scm [moved from guile/step9_try.scm with 100% similarity]
impls/guile/stepA_mal.scm [moved from guile/stepA_mal.scm with 100% similarity]
impls/guile/types.scm [moved from guile/types.scm with 100% similarity]
impls/haskell/Core.hs [moved from haskell/Core.hs with 100% similarity]
impls/haskell/Dockerfile [moved from haskell/Dockerfile with 100% similarity]
impls/haskell/Env.hs [moved from haskell/Env.hs with 100% similarity]
impls/haskell/Makefile [moved from haskell/Makefile with 100% similarity]
impls/haskell/Printer.hs [moved from haskell/Printer.hs with 100% similarity]
impls/haskell/Reader.hs [moved from haskell/Reader.hs with 100% similarity]
impls/haskell/Readline.hs [moved from haskell/Readline.hs with 100% similarity]
impls/haskell/Types.hs [moved from haskell/Types.hs with 100% similarity]
impls/haskell/run [moved from haskell/run with 100% similarity]
impls/haskell/step0_repl.hs [moved from haskell/step0_repl.hs with 100% similarity]
impls/haskell/step1_read_print.hs [moved from haskell/step1_read_print.hs with 100% similarity]
impls/haskell/step2_eval.hs [moved from haskell/step2_eval.hs with 100% similarity]
impls/haskell/step3_env.hs [moved from haskell/step3_env.hs with 100% similarity]
impls/haskell/step4_if_fn_do.hs [moved from haskell/step4_if_fn_do.hs with 100% similarity]
impls/haskell/step5_tco.hs [moved from haskell/step5_tco.hs with 100% similarity]
impls/haskell/step6_file.hs [moved from haskell/step6_file.hs with 100% similarity]
impls/haskell/step7_quote.hs [moved from haskell/step7_quote.hs with 100% similarity]
impls/haskell/step8_macros.hs [moved from haskell/step8_macros.hs with 100% similarity]
impls/haskell/step9_try.hs [moved from haskell/step9_try.hs with 100% similarity]
impls/haskell/stepA_mal.hs [moved from haskell/stepA_mal.hs with 100% similarity]
impls/haskell/tests/step5_tco.mal [moved from haskell/tests/step5_tco.mal with 100% similarity]
impls/haxe/Compat.hx [moved from haxe/Compat.hx with 100% similarity]
impls/haxe/Dockerfile [moved from haxe/Dockerfile with 100% similarity]
impls/haxe/Makefile [moved from haxe/Makefile with 100% similarity]
impls/haxe/Step0_repl.hx [moved from haxe/Step0_repl.hx with 100% similarity]
impls/haxe/Step1_read_print.hx [moved from haxe/Step1_read_print.hx with 100% similarity]
impls/haxe/Step2_eval.hx [moved from haxe/Step2_eval.hx with 100% similarity]
impls/haxe/Step3_env.hx [moved from haxe/Step3_env.hx with 100% similarity]
impls/haxe/Step4_if_fn_do.hx [moved from haxe/Step4_if_fn_do.hx with 100% similarity]
impls/haxe/Step5_tco.hx [moved from haxe/Step5_tco.hx with 100% similarity]
impls/haxe/Step6_file.hx [moved from haxe/Step6_file.hx with 100% similarity]
impls/haxe/Step7_quote.hx [moved from haxe/Step7_quote.hx with 100% similarity]
impls/haxe/Step8_macros.hx [moved from haxe/Step8_macros.hx with 100% similarity]
impls/haxe/Step9_try.hx [moved from haxe/Step9_try.hx with 100% similarity]
impls/haxe/StepA_mal.hx [moved from haxe/StepA_mal.hx with 100% similarity]
impls/haxe/core/Core.hx [moved from haxe/core/Core.hx with 100% similarity]
impls/haxe/env/Env.hx [moved from haxe/env/Env.hx with 100% similarity]
impls/haxe/node_readline.js [moved from haxe/node_readline.js with 100% similarity]
impls/haxe/package.json [moved from haxe/package.json with 100% similarity]
impls/haxe/printer/Printer.hx [moved from haxe/printer/Printer.hx with 100% similarity]
impls/haxe/reader/BlankLine.hx [moved from haxe/reader/BlankLine.hx with 100% similarity]
impls/haxe/reader/Reader.hx [moved from haxe/reader/Reader.hx with 100% similarity]
impls/haxe/run [moved from haxe/run with 100% similarity]
impls/haxe/tests/step5_tco.mal [moved from haxe/tests/step5_tco.mal with 100% similarity]
impls/haxe/types/MalException.hx [moved from haxe/types/MalException.hx with 100% similarity]
impls/haxe/types/Types.hx [moved from haxe/types/Types.hx with 100% similarity]
impls/hy/Dockerfile [moved from hy/Dockerfile with 100% similarity]
impls/hy/Makefile [moved from hy/Makefile with 100% similarity]
impls/hy/core.hy [moved from hy/core.hy with 100% similarity]
impls/hy/env.hy [moved from hy/env.hy with 100% similarity]
impls/hy/mal_types.hy [moved from hy/mal_types.hy with 100% similarity]
impls/hy/printer.hy [moved from hy/printer.hy with 100% similarity]
impls/hy/reader.hy [moved from hy/reader.hy with 100% similarity]
impls/hy/run [moved from hy/run with 100% similarity]
impls/hy/step0_repl.hy [moved from hy/step0_repl.hy with 100% similarity]
impls/hy/step1_read_print.hy [moved from hy/step1_read_print.hy with 100% similarity]
impls/hy/step2_eval.hy [moved from hy/step2_eval.hy with 100% similarity]
impls/hy/step3_env.hy [moved from hy/step3_env.hy with 100% similarity]
impls/hy/step4_if_fn_do.hy [moved from hy/step4_if_fn_do.hy with 100% similarity]
impls/hy/step5_tco.hy [moved from hy/step5_tco.hy with 100% similarity]
impls/hy/step6_file.hy [moved from hy/step6_file.hy with 100% similarity]
impls/hy/step7_quote.hy [moved from hy/step7_quote.hy with 100% similarity]
impls/hy/step8_macros.hy [moved from hy/step8_macros.hy with 100% similarity]
impls/hy/step9_try.hy [moved from hy/step9_try.hy with 100% similarity]
impls/hy/stepA_mal.hy [moved from hy/stepA_mal.hy with 100% similarity]
impls/hy/tests/step5_tco.mal [moved from hy/tests/step5_tco.mal with 100% similarity]
impls/io/Dockerfile [moved from io/Dockerfile with 100% similarity]
impls/io/Env.io [moved from io/Env.io with 100% similarity]
impls/io/Makefile [moved from io/Makefile with 100% similarity]
impls/io/MalCore.io [moved from io/MalCore.io with 100% similarity]
impls/io/MalReader.io [moved from io/MalReader.io with 100% similarity]
impls/io/MalReadline.io [moved from io/MalReadline.io with 100% similarity]
impls/io/MalTypes.io [moved from io/MalTypes.io with 100% similarity]
impls/io/run [moved from io/run with 100% similarity]
impls/io/step0_repl.io [moved from io/step0_repl.io with 100% similarity]
impls/io/step1_read_print.io [moved from io/step1_read_print.io with 100% similarity]
impls/io/step2_eval.io [moved from io/step2_eval.io with 100% similarity]
impls/io/step3_env.io [moved from io/step3_env.io with 100% similarity]
impls/io/step4_if_fn_do.io [moved from io/step4_if_fn_do.io with 100% similarity]
impls/io/step5_tco.io [moved from io/step5_tco.io with 100% similarity]
impls/io/step6_file.io [moved from io/step6_file.io with 100% similarity]
impls/io/step7_quote.io [moved from io/step7_quote.io with 100% similarity]
impls/io/step8_macros.io [moved from io/step8_macros.io with 100% similarity]
impls/io/step9_try.io [moved from io/step9_try.io with 100% similarity]
impls/io/stepA_mal.io [moved from io/stepA_mal.io with 100% similarity]
impls/io/tests/step5_tco.mal [moved from io/tests/step5_tco.mal with 100% similarity]
impls/io/tests/stepA_mal.mal [moved from io/tests/stepA_mal.mal with 100% similarity]
impls/java/Dockerfile [moved from java/Dockerfile with 100% similarity]
impls/java/Makefile [moved from java/Makefile with 100% similarity]
impls/java/pom.xml [moved from java/pom.xml with 100% similarity]
impls/java/run [moved from java/run with 100% similarity]
impls/java/src/main/java/mal/core.java [moved from java/src/main/java/mal/core.java with 100% similarity]
impls/java/src/main/java/mal/env.java [moved from java/src/main/java/mal/env.java with 100% similarity]
impls/java/src/main/java/mal/printer.java [moved from java/src/main/java/mal/printer.java with 100% similarity]
impls/java/src/main/java/mal/reader.java [moved from java/src/main/java/mal/reader.java with 100% similarity]
impls/java/src/main/java/mal/readline.java [moved from java/src/main/java/mal/readline.java with 100% similarity]
impls/java/src/main/java/mal/step0_repl.java [moved from java/src/main/java/mal/step0_repl.java with 100% similarity]
impls/java/src/main/java/mal/step1_read_print.java [moved from java/src/main/java/mal/step1_read_print.java with 100% similarity]
impls/java/src/main/java/mal/step2_eval.java [moved from java/src/main/java/mal/step2_eval.java with 100% similarity]
impls/java/src/main/java/mal/step3_env.java [moved from java/src/main/java/mal/step3_env.java with 100% similarity]
impls/java/src/main/java/mal/step4_if_fn_do.java [moved from java/src/main/java/mal/step4_if_fn_do.java with 100% similarity]
impls/java/src/main/java/mal/step5_tco.java [moved from java/src/main/java/mal/step5_tco.java with 100% similarity]
impls/java/src/main/java/mal/step6_file.java [moved from java/src/main/java/mal/step6_file.java with 100% similarity]
impls/java/src/main/java/mal/step7_quote.java [moved from java/src/main/java/mal/step7_quote.java with 100% similarity]
impls/java/src/main/java/mal/step8_macros.java [moved from java/src/main/java/mal/step8_macros.java with 100% similarity]
impls/java/src/main/java/mal/step9_try.java [moved from java/src/main/java/mal/step9_try.java with 100% similarity]
impls/java/src/main/java/mal/stepA_mal.java [moved from java/src/main/java/mal/stepA_mal.java with 100% similarity]
impls/java/src/main/java/mal/types.java [moved from java/src/main/java/mal/types.java with 100% similarity]
impls/java/tests/step5_tco.mal [moved from java/tests/step5_tco.mal with 100% similarity]
impls/jq/Dockerfile [moved from jq/Dockerfile with 100% similarity]
impls/jq/Makefile [moved from jq/Makefile with 100% similarity]
impls/jq/core.jq [moved from jq/core.jq with 100% similarity]
impls/jq/env.jq [moved from jq/env.jq with 100% similarity]
impls/jq/interp.jq [moved from jq/interp.jq with 100% similarity]
impls/jq/printer.jq [moved from jq/printer.jq with 100% similarity]
impls/jq/reader.jq [moved from jq/reader.jq with 100% similarity]
impls/jq/rts.py [moved from jq/rts.py with 100% similarity]
impls/jq/run [moved from jq/run with 100% similarity]
impls/jq/step0_repl.jq [moved from jq/step0_repl.jq with 100% similarity]
impls/jq/step1_read_print.jq [moved from jq/step1_read_print.jq with 100% similarity]
impls/jq/step2_eval.jq [moved from jq/step2_eval.jq with 100% similarity]
impls/jq/step3_env.jq [moved from jq/step3_env.jq with 100% similarity]
impls/jq/step4_if_fn_do.jq [moved from jq/step4_if_fn_do.jq with 100% similarity]
impls/jq/step5_tco.jq [moved from jq/step5_tco.jq with 100% similarity]
impls/jq/step6_file.jq [moved from jq/step6_file.jq with 100% similarity]
impls/jq/step7_quote.jq [moved from jq/step7_quote.jq with 100% similarity]
impls/jq/step8_macros.jq [moved from jq/step8_macros.jq with 100% similarity]
impls/jq/step9_try.jq [moved from jq/step9_try.jq with 100% similarity]
impls/jq/stepA_mal.jq [moved from jq/stepA_mal.jq with 100% similarity]
impls/jq/utils.jq [moved from jq/utils.jq with 100% similarity]
impls/js/Dockerfile [moved from js/Dockerfile with 100% similarity]
impls/js/Makefile [moved from js/Makefile with 100% similarity]
impls/js/core.js [moved from js/core.js with 100% similarity]
impls/js/env.js [moved from js/env.js with 100% similarity]
impls/js/interop.js [moved from js/interop.js with 100% similarity]
impls/js/jq_readline.js [moved from js/jq_readline.js with 100% similarity]
impls/js/node_readline.js [moved from js/node_readline.js with 100% similarity]
impls/js/package.json [moved from js/package.json with 100% similarity]
impls/js/printer.js [moved from js/printer.js with 100% similarity]
impls/js/reader.js [moved from js/reader.js with 100% similarity]
impls/js/run [moved from js/run with 100% similarity]
impls/js/step0_repl.js [moved from js/step0_repl.js with 100% similarity]
impls/js/step1_read_print.js [moved from js/step1_read_print.js with 100% similarity]
impls/js/step2_eval.js [moved from js/step2_eval.js with 100% similarity]
impls/js/step3_env.js [moved from js/step3_env.js with 100% similarity]
impls/js/step4_if_fn_do.js [moved from js/step4_if_fn_do.js with 100% similarity]
impls/js/step5_tco.js [moved from js/step5_tco.js with 100% similarity]
impls/js/step6_file.js [moved from js/step6_file.js with 100% similarity]
impls/js/step7_quote.js [moved from js/step7_quote.js with 100% similarity]
impls/js/step8_macros.js [moved from js/step8_macros.js with 100% similarity]
impls/js/step9_try.js [moved from js/step9_try.js with 100% similarity]
impls/js/stepA_mal.js [moved from js/stepA_mal.js with 100% similarity]
impls/js/tests/common.js [moved from js/tests/common.js with 100% similarity]
impls/js/tests/node_modules [moved from js/tests/node_modules with 100% similarity]
impls/js/tests/reader.js [moved from js/tests/reader.js with 100% similarity]
impls/js/tests/step5_tco.mal [moved from js/tests/step5_tco.mal with 100% similarity]
impls/js/tests/stepA_mal.mal [moved from js/tests/stepA_mal.mal with 100% similarity]
impls/js/tests/types.js [moved from js/tests/types.js with 100% similarity]
impls/js/types.js [moved from js/types.js with 100% similarity]
impls/js/web [moved from js/web with 100% similarity]
impls/julia/Dockerfile [moved from julia/Dockerfile with 100% similarity]
impls/julia/Makefile [moved from julia/Makefile with 100% similarity]
impls/julia/core.jl [moved from julia/core.jl with 100% similarity]
impls/julia/env.jl [moved from julia/env.jl with 100% similarity]
impls/julia/printer.jl [moved from julia/printer.jl with 100% similarity]
impls/julia/reader.jl [moved from julia/reader.jl with 100% similarity]
impls/julia/readline_mod.jl [moved from julia/readline_mod.jl with 100% similarity]
impls/julia/run [moved from julia/run with 100% similarity]
impls/julia/step0_repl.jl [moved from julia/step0_repl.jl with 100% similarity]
impls/julia/step1_read_print.jl [moved from julia/step1_read_print.jl with 100% similarity]
impls/julia/step2_eval.jl [moved from julia/step2_eval.jl with 100% similarity]
impls/julia/step3_env.jl [moved from julia/step3_env.jl with 100% similarity]
impls/julia/step4_if_fn_do.jl [moved from julia/step4_if_fn_do.jl with 100% similarity]
impls/julia/step5_tco.jl [moved from julia/step5_tco.jl with 100% similarity]
impls/julia/step6_file.jl [moved from julia/step6_file.jl with 100% similarity]
impls/julia/step7_quote.jl [moved from julia/step7_quote.jl with 100% similarity]
impls/julia/step8_macros.jl [moved from julia/step8_macros.jl with 100% similarity]
impls/julia/step9_try.jl [moved from julia/step9_try.jl with 100% similarity]
impls/julia/stepA_mal.jl [moved from julia/stepA_mal.jl with 100% similarity]
impls/julia/tests/step5_tco.mal [moved from julia/tests/step5_tco.mal with 100% similarity]
impls/julia/types.jl [moved from julia/types.jl with 100% similarity]
impls/kotlin/Dockerfile [moved from kotlin/Dockerfile with 100% similarity]
impls/kotlin/Makefile [moved from kotlin/Makefile with 100% similarity]
impls/kotlin/run [moved from kotlin/run with 100% similarity]
impls/kotlin/src/mal/core.kt [moved from kotlin/src/mal/core.kt with 100% similarity]
impls/kotlin/src/mal/env.kt [moved from kotlin/src/mal/env.kt with 100% similarity]
impls/kotlin/src/mal/printer.kt [moved from kotlin/src/mal/printer.kt with 100% similarity]
impls/kotlin/src/mal/reader.kt [moved from kotlin/src/mal/reader.kt with 100% similarity]
impls/kotlin/src/mal/readline.kt [moved from kotlin/src/mal/readline.kt with 100% similarity]
impls/kotlin/src/mal/step0_repl.kt [moved from kotlin/src/mal/step0_repl.kt with 100% similarity]
impls/kotlin/src/mal/step1_read_print.kt [moved from kotlin/src/mal/step1_read_print.kt with 100% similarity]
impls/kotlin/src/mal/step2_eval.kt [moved from kotlin/src/mal/step2_eval.kt with 100% similarity]
impls/kotlin/src/mal/step3_env.kt [moved from kotlin/src/mal/step3_env.kt with 100% similarity]
impls/kotlin/src/mal/step4_if_fn_do.kt [moved from kotlin/src/mal/step4_if_fn_do.kt with 100% similarity]
impls/kotlin/src/mal/step5_tco.kt [moved from kotlin/src/mal/step5_tco.kt with 100% similarity]
impls/kotlin/src/mal/step6_file.kt [moved from kotlin/src/mal/step6_file.kt with 100% similarity]
impls/kotlin/src/mal/step7_quote.kt [moved from kotlin/src/mal/step7_quote.kt with 100% similarity]
impls/kotlin/src/mal/step8_macros.kt [moved from kotlin/src/mal/step8_macros.kt with 100% similarity]
impls/kotlin/src/mal/step9_try.kt [moved from kotlin/src/mal/step9_try.kt with 100% similarity]
impls/kotlin/src/mal/stepA_mal.kt [moved from kotlin/src/mal/stepA_mal.kt with 100% similarity]
impls/kotlin/src/mal/types.kt [moved from kotlin/src/mal/types.kt with 100% similarity]
impls/kotlin/tests/step5_tco.mal [moved from kotlin/tests/step5_tco.mal with 100% similarity]
impls/lib/README.md [moved from lib/README.md with 100% similarity]
impls/lib/alias-hacks.mal [moved from lib/alias-hacks.mal with 100% similarity]
impls/lib/equality.mal [moved from lib/equality.mal with 100% similarity]
impls/lib/load-file-once.mal [moved from lib/load-file-once.mal with 100% similarity]
impls/lib/memoize.mal [moved from lib/memoize.mal with 100% similarity]
impls/lib/perf.mal [moved from lib/perf.mal with 100% similarity]
impls/lib/pprint.mal [moved from lib/pprint.mal with 100% similarity]
impls/lib/protocols.mal [moved from lib/protocols.mal with 100% similarity]
impls/lib/reducers.mal [moved from lib/reducers.mal with 100% similarity]
impls/lib/test_cascade.mal [moved from lib/test_cascade.mal with 100% similarity]
impls/lib/threading.mal [moved from lib/threading.mal with 100% similarity]
impls/lib/trivial.mal [moved from lib/trivial.mal with 100% similarity]
impls/livescript/Dockerfile [moved from livescript/Dockerfile with 100% similarity]
impls/livescript/Makefile [moved from livescript/Makefile with 100% similarity]
impls/livescript/core.ls [moved from livescript/core.ls with 100% similarity]
impls/livescript/env.ls [moved from livescript/env.ls with 100% similarity]
impls/livescript/error.ls [moved from livescript/error.ls with 100% similarity]
impls/livescript/node_readline.js [moved from livescript/node_readline.js with 100% similarity]
impls/livescript/package.json [moved from livescript/package.json with 100% similarity]
impls/livescript/printer.ls [moved from livescript/printer.ls with 100% similarity]
impls/livescript/reader.ls [moved from livescript/reader.ls with 100% similarity]
impls/livescript/run [moved from livescript/run with 100% similarity]
impls/livescript/step0_repl.ls [moved from livescript/step0_repl.ls with 100% similarity]
impls/livescript/step1_read_print.ls [moved from livescript/step1_read_print.ls with 100% similarity]
impls/livescript/step2_eval.ls [moved from livescript/step2_eval.ls with 100% similarity]
impls/livescript/step3_env.ls [moved from livescript/step3_env.ls with 100% similarity]
impls/livescript/step4_if_fn_do.ls [moved from livescript/step4_if_fn_do.ls with 100% similarity]
impls/livescript/step5_tco.ls [moved from livescript/step5_tco.ls with 100% similarity]
impls/livescript/step6_file.ls [moved from livescript/step6_file.ls with 100% similarity]
impls/livescript/step7_quote.ls [moved from livescript/step7_quote.ls with 100% similarity]
impls/livescript/step8_macros.ls [moved from livescript/step8_macros.ls with 100% similarity]
impls/livescript/step9_try.ls [moved from livescript/step9_try.ls with 100% similarity]
impls/livescript/stepA_mal.ls [moved from livescript/stepA_mal.ls with 100% similarity]
impls/livescript/utils.ls [moved from livescript/utils.ls with 100% similarity]
impls/logo/Dockerfile [moved from logo/Dockerfile with 100% similarity]
impls/logo/Makefile [moved from logo/Makefile with 100% similarity]
impls/logo/core.lg [moved from logo/core.lg with 100% similarity]
impls/logo/env.lg [moved from logo/env.lg with 100% similarity]
impls/logo/examples/tree.mal [moved from logo/examples/tree.mal with 100% similarity]
impls/logo/printer.lg [moved from logo/printer.lg with 100% similarity]
impls/logo/reader.lg [moved from logo/reader.lg with 100% similarity]
impls/logo/readline.lg [moved from logo/readline.lg with 100% similarity]
impls/logo/run [moved from logo/run with 100% similarity]
impls/logo/step0_repl.lg [moved from logo/step0_repl.lg with 100% similarity]
impls/logo/step1_read_print.lg [moved from logo/step1_read_print.lg with 100% similarity]
impls/logo/step2_eval.lg [moved from logo/step2_eval.lg with 100% similarity]
impls/logo/step3_env.lg [moved from logo/step3_env.lg with 100% similarity]
impls/logo/step4_if_fn_do.lg [moved from logo/step4_if_fn_do.lg with 100% similarity]
impls/logo/step5_tco.lg [moved from logo/step5_tco.lg with 100% similarity]
impls/logo/step6_file.lg [moved from logo/step6_file.lg with 100% similarity]
impls/logo/step7_quote.lg [moved from logo/step7_quote.lg with 100% similarity]
impls/logo/step8_macros.lg [moved from logo/step8_macros.lg with 100% similarity]
impls/logo/step9_try.lg [moved from logo/step9_try.lg with 100% similarity]
impls/logo/stepA_mal.lg [moved from logo/stepA_mal.lg with 100% similarity]
impls/logo/tests/stepA_mal.mal [moved from logo/tests/stepA_mal.mal with 100% similarity]
impls/logo/types.lg [moved from logo/types.lg with 100% similarity]
impls/lua/Dockerfile [moved from lua/Dockerfile with 100% similarity]
impls/lua/Makefile [moved from lua/Makefile with 100% similarity]
impls/lua/core.lua [moved from lua/core.lua with 100% similarity]
impls/lua/env.lua [moved from lua/env.lua with 100% similarity]
impls/lua/printer.lua [moved from lua/printer.lua with 100% similarity]
impls/lua/reader.lua [moved from lua/reader.lua with 100% similarity]
impls/lua/readline.lua [moved from lua/readline.lua with 100% similarity]
impls/lua/run [moved from lua/run with 100% similarity]
impls/lua/step0_repl.lua [moved from lua/step0_repl.lua with 100% similarity]
impls/lua/step1_read_print.lua [moved from lua/step1_read_print.lua with 100% similarity]
impls/lua/step2_eval.lua [moved from lua/step2_eval.lua with 100% similarity]
impls/lua/step3_env.lua [moved from lua/step3_env.lua with 100% similarity]
impls/lua/step4_if_fn_do.lua [moved from lua/step4_if_fn_do.lua with 100% similarity]
impls/lua/step5_tco.lua [moved from lua/step5_tco.lua with 100% similarity]
impls/lua/step6_file.lua [moved from lua/step6_file.lua with 100% similarity]
impls/lua/step7_quote.lua [moved from lua/step7_quote.lua with 100% similarity]
impls/lua/step8_macros.lua [moved from lua/step8_macros.lua with 100% similarity]
impls/lua/step9_try.lua [moved from lua/step9_try.lua with 100% similarity]
impls/lua/stepA_mal.lua [moved from lua/stepA_mal.lua with 100% similarity]
impls/lua/tests/step5_tco.mal [moved from lua/tests/step5_tco.mal with 100% similarity]
impls/lua/tests/stepA_mal.mal [moved from lua/tests/stepA_mal.mal with 100% similarity]
impls/lua/types.lua [moved from lua/types.lua with 100% similarity]
impls/lua/utils.lua [moved from lua/utils.lua with 100% similarity]
impls/make/Dockerfile [moved from make/Dockerfile with 100% similarity]
impls/make/Makefile [moved from make/Makefile with 100% similarity]
impls/make/core.mk [moved from make/core.mk with 100% similarity]
impls/make/env.mk [moved from make/env.mk with 100% similarity]
impls/make/gmsl.mk [moved from make/gmsl.mk with 100% similarity]
impls/make/numbers.mk [moved from make/numbers.mk with 100% similarity]
impls/make/printer.mk [moved from make/printer.mk with 100% similarity]
impls/make/reader.mk [moved from make/reader.mk with 100% similarity]
impls/make/readline.mk [moved from make/readline.mk with 100% similarity]
impls/make/rules.mk [moved from make/rules.mk with 100% similarity]
impls/make/run [moved from make/run with 100% similarity]
impls/make/step0_repl.mk [moved from make/step0_repl.mk with 100% similarity]
impls/make/step1_read_print.mk [moved from make/step1_read_print.mk with 100% similarity]
impls/make/step2_eval.mk [moved from make/step2_eval.mk with 100% similarity]
impls/make/step3_env.mk [moved from make/step3_env.mk with 100% similarity]
impls/make/step4_if_fn_do.mk [moved from make/step4_if_fn_do.mk with 100% similarity]
impls/make/step6_file.mk [moved from make/step6_file.mk with 100% similarity]
impls/make/step7_quote.mk [moved from make/step7_quote.mk with 100% similarity]
impls/make/step8_macros.mk [moved from make/step8_macros.mk with 100% similarity]
impls/make/step9_try.mk [moved from make/step9_try.mk with 100% similarity]
impls/make/stepA_mal.mk [moved from make/stepA_mal.mk with 100% similarity]
impls/make/tests/stepA_mal.mal [moved from make/tests/stepA_mal.mal with 100% similarity]
impls/make/types.mk [moved from make/types.mk with 100% similarity]
impls/make/util.mk [moved from make/util.mk with 100% similarity]
impls/mal/Dockerfile [moved from mal/Dockerfile with 100% similarity]
impls/mal/Makefile [moved from mal/Makefile with 100% similarity]
impls/mal/core.mal [moved from mal/core.mal with 100% similarity]
impls/mal/env.mal [moved from mal/env.mal with 100% similarity]
impls/mal/run [moved from mal/run with 100% similarity]
impls/mal/step0_repl.mal [moved from mal/step0_repl.mal with 100% similarity]
impls/mal/step1_read_print.mal [moved from mal/step1_read_print.mal with 100% similarity]
impls/mal/step2_eval.mal [moved from mal/step2_eval.mal with 100% similarity]
impls/mal/step3_env.mal [moved from mal/step3_env.mal with 100% similarity]
impls/mal/step4_if_fn_do.mal [moved from mal/step4_if_fn_do.mal with 100% similarity]
impls/mal/step6_file.mal [moved from mal/step6_file.mal with 100% similarity]
impls/mal/step7_quote.mal [moved from mal/step7_quote.mal with 100% similarity]
impls/mal/step8_macros.mal [moved from mal/step8_macros.mal with 100% similarity]
impls/mal/step9_try.mal [moved from mal/step9_try.mal with 100% similarity]
impls/mal/stepA_mal.mal [moved from mal/stepA_mal.mal with 100% similarity]
impls/matlab/+types/Atom.m [moved from matlab/+types/Atom.m with 100% similarity]
impls/matlab/+types/Function.m [moved from matlab/+types/Function.m with 100% similarity]
impls/matlab/+types/HashMap.m [moved from matlab/+types/HashMap.m with 100% similarity]
impls/matlab/+types/List.m [moved from matlab/+types/List.m with 100% similarity]
impls/matlab/+types/MalException.m [moved from matlab/+types/MalException.m with 100% similarity]
impls/matlab/+types/Nil.m [moved from matlab/+types/Nil.m with 100% similarity]
impls/matlab/+types/Reader.m [moved from matlab/+types/Reader.m with 100% similarity]
impls/matlab/+types/Symbol.m [moved from matlab/+types/Symbol.m with 100% similarity]
impls/matlab/+types/Vector.m [moved from matlab/+types/Vector.m with 100% similarity]
impls/matlab/.dockerignore [moved from matlab/.dockerignore with 100% similarity]
impls/matlab/Dict.m [moved from matlab/Dict.m with 100% similarity]
impls/matlab/Dockerfile [moved from matlab/Dockerfile with 100% similarity]
impls/matlab/Env.m [moved from matlab/Env.m with 100% similarity]
impls/matlab/Makefile [moved from matlab/Makefile with 100% similarity]
impls/matlab/core.m [moved from matlab/core.m with 100% similarity]
impls/matlab/printer.m [moved from matlab/printer.m with 100% similarity]
impls/matlab/reader.m [moved from matlab/reader.m with 100% similarity]
impls/matlab/run [moved from matlab/run with 100% similarity]
impls/matlab/step0_repl.m [moved from matlab/step0_repl.m with 100% similarity]
impls/matlab/step1_read_print.m [moved from matlab/step1_read_print.m with 100% similarity]
impls/matlab/step2_eval.m [moved from matlab/step2_eval.m with 100% similarity]
impls/matlab/step3_env.m [moved from matlab/step3_env.m with 100% similarity]
impls/matlab/step4_if_fn_do.m [moved from matlab/step4_if_fn_do.m with 100% similarity]
impls/matlab/step5_tco.m [moved from matlab/step5_tco.m with 100% similarity]
impls/matlab/step6_file.m [moved from matlab/step6_file.m with 100% similarity]
impls/matlab/step7_quote.m [moved from matlab/step7_quote.m with 100% similarity]
impls/matlab/step8_macros.m [moved from matlab/step8_macros.m with 100% similarity]
impls/matlab/step9_try.m [moved from matlab/step9_try.m with 100% similarity]
impls/matlab/stepA_mal.m [moved from matlab/stepA_mal.m with 100% similarity]
impls/matlab/type_utils.m [moved from matlab/type_utils.m with 100% similarity]
impls/matlab/types [moved from matlab/types with 100% similarity]
impls/miniMAL/Dockerfile [moved from miniMAL/Dockerfile with 100% similarity]
impls/miniMAL/Makefile [moved from miniMAL/Makefile with 100% similarity]
impls/miniMAL/core.json [moved from miniMAL/core.json with 100% similarity]
impls/miniMAL/env.json [moved from miniMAL/env.json with 100% similarity]
impls/miniMAL/miniMAL-core.json [moved from miniMAL/miniMAL-core.json with 100% similarity]
impls/miniMAL/node_readline.js [moved from miniMAL/node_readline.js with 100% similarity]
impls/miniMAL/package.json [moved from miniMAL/package.json with 100% similarity]
impls/miniMAL/printer.json [moved from miniMAL/printer.json with 100% similarity]
impls/miniMAL/reader.json [moved from miniMAL/reader.json with 100% similarity]
impls/miniMAL/run [moved from miniMAL/run with 100% similarity]
impls/miniMAL/step0_repl.json [moved from miniMAL/step0_repl.json with 100% similarity]
impls/miniMAL/step1_read_print.json [moved from miniMAL/step1_read_print.json with 100% similarity]
impls/miniMAL/step2_eval.json [moved from miniMAL/step2_eval.json with 100% similarity]
impls/miniMAL/step3_env.json [moved from miniMAL/step3_env.json with 100% similarity]
impls/miniMAL/step4_if_fn_do.json [moved from miniMAL/step4_if_fn_do.json with 100% similarity]
impls/miniMAL/step5_tco.json [moved from miniMAL/step5_tco.json with 100% similarity]
impls/miniMAL/step6_file.json [moved from miniMAL/step6_file.json with 100% similarity]
impls/miniMAL/step7_quote.json [moved from miniMAL/step7_quote.json with 100% similarity]
impls/miniMAL/step8_macros.json [moved from miniMAL/step8_macros.json with 100% similarity]
impls/miniMAL/step9_try.json [moved from miniMAL/step9_try.json with 100% similarity]
impls/miniMAL/stepA_mal.json [moved from miniMAL/stepA_mal.json with 100% similarity]
impls/miniMAL/tests/step5_tco.mal [moved from miniMAL/tests/step5_tco.mal with 100% similarity]
impls/miniMAL/types.json [moved from miniMAL/types.json with 100% similarity]
impls/nasm/Dockerfile [moved from nasm/Dockerfile with 100% similarity]
impls/nasm/Makefile [moved from nasm/Makefile with 100% similarity]
impls/nasm/README.md [moved from nasm/README.md with 100% similarity]
impls/nasm/core.asm [moved from nasm/core.asm with 100% similarity]
impls/nasm/env.asm [moved from nasm/env.asm with 100% similarity]
impls/nasm/exceptions.asm [moved from nasm/exceptions.asm with 100% similarity]
impls/nasm/macros.mac [moved from nasm/macros.mac with 100% similarity]
impls/nasm/printer.asm [moved from nasm/printer.asm with 100% similarity]
impls/nasm/reader.asm [moved from nasm/reader.asm with 100% similarity]
impls/nasm/run [moved from nasm/run with 100% similarity]
impls/nasm/step0_repl.asm [moved from nasm/step0_repl.asm with 100% similarity]
impls/nasm/step1_read_print.asm [moved from nasm/step1_read_print.asm with 100% similarity]
impls/nasm/step2_eval.asm [moved from nasm/step2_eval.asm with 100% similarity]
impls/nasm/step3_env.asm [moved from nasm/step3_env.asm with 100% similarity]
impls/nasm/step4_if_fn_do.asm [moved from nasm/step4_if_fn_do.asm with 100% similarity]
impls/nasm/step5_tco.asm [moved from nasm/step5_tco.asm with 100% similarity]
impls/nasm/step6_file.asm [moved from nasm/step6_file.asm with 100% similarity]
impls/nasm/step7_quote.asm [moved from nasm/step7_quote.asm with 100% similarity]
impls/nasm/step8_macros.asm [moved from nasm/step8_macros.asm with 100% similarity]
impls/nasm/step9_try.asm [moved from nasm/step9_try.asm with 100% similarity]
impls/nasm/stepA_mal.asm [moved from nasm/stepA_mal.asm with 100% similarity]
impls/nasm/system.asm [moved from nasm/system.asm with 100% similarity]
impls/nasm/types.asm [moved from nasm/types.asm with 100% similarity]
impls/nim/Dockerfile [moved from nim/Dockerfile with 100% similarity]
impls/nim/Makefile [moved from nim/Makefile with 100% similarity]
impls/nim/core.nim [moved from nim/core.nim with 100% similarity]
impls/nim/env.nim [moved from nim/env.nim with 100% similarity]
impls/nim/mal.nimble [moved from nim/mal.nimble with 100% similarity]
impls/nim/nim.cfg [moved from nim/nim.cfg with 100% similarity]
impls/nim/printer.nim [moved from nim/printer.nim with 100% similarity]
impls/nim/reader.nim [moved from nim/reader.nim with 100% similarity]
impls/nim/run [moved from nim/run with 100% similarity]
impls/nim/step0_repl.nim [moved from nim/step0_repl.nim with 100% similarity]
impls/nim/step1_read_print.nim [moved from nim/step1_read_print.nim with 100% similarity]
impls/nim/step2_eval.nim [moved from nim/step2_eval.nim with 100% similarity]
impls/nim/step3_env.nim [moved from nim/step3_env.nim with 100% similarity]
impls/nim/step4_if_fn_do.nim [moved from nim/step4_if_fn_do.nim with 100% similarity]
impls/nim/step5_tco.nim [moved from nim/step5_tco.nim with 100% similarity]
impls/nim/step6_file.nim [moved from nim/step6_file.nim with 100% similarity]
impls/nim/step7_quote.nim [moved from nim/step7_quote.nim with 100% similarity]
impls/nim/step8_macros.nim [moved from nim/step8_macros.nim with 100% similarity]
impls/nim/step9_try.nim [moved from nim/step9_try.nim with 100% similarity]
impls/nim/stepA_mal.nim [moved from nim/stepA_mal.nim with 100% similarity]
impls/nim/tests/step5_tco.mal [moved from nim/tests/step5_tco.mal with 100% similarity]
impls/nim/types.nim [moved from nim/types.nim with 100% similarity]
impls/objc/Dockerfile [moved from objc/Dockerfile with 100% similarity]
impls/objc/Makefile [moved from objc/Makefile with 100% similarity]
impls/objc/core.h [moved from objc/core.h with 100% similarity]
impls/objc/core.m [moved from objc/core.m with 100% similarity]
impls/objc/env.h [moved from objc/env.h with 100% similarity]
impls/objc/env.m [moved from objc/env.m with 100% similarity]
impls/objc/mal_readline.c [moved from objc/mal_readline.c with 100% similarity]
impls/objc/mal_readline.h [moved from objc/mal_readline.h with 100% similarity]
impls/objc/malfunc.h [moved from objc/malfunc.h with 100% similarity]
impls/objc/malfunc.m [moved from objc/malfunc.m with 100% similarity]
impls/objc/printer.h [moved from objc/printer.h with 100% similarity]
impls/objc/printer.m [moved from objc/printer.m with 100% similarity]
impls/objc/reader.h [moved from objc/reader.h with 100% similarity]
impls/objc/reader.m [moved from objc/reader.m with 100% similarity]
impls/objc/run [moved from objc/run with 100% similarity]
impls/objc/step0_repl.m [moved from objc/step0_repl.m with 100% similarity]
impls/objc/step1_read_print.m [moved from objc/step1_read_print.m with 100% similarity]
impls/objc/step2_eval.m [moved from objc/step2_eval.m with 100% similarity]
impls/objc/step3_env.m [moved from objc/step3_env.m with 100% similarity]
impls/objc/step4_if_fn_do.m [moved from objc/step4_if_fn_do.m with 100% similarity]
impls/objc/step5_tco.m [moved from objc/step5_tco.m with 100% similarity]
impls/objc/step6_file.m [moved from objc/step6_file.m with 100% similarity]
impls/objc/step7_quote.m [moved from objc/step7_quote.m with 100% similarity]
impls/objc/step8_macros.m [moved from objc/step8_macros.m with 100% similarity]
impls/objc/step9_try.m [moved from objc/step9_try.m with 100% similarity]
impls/objc/stepA_mal.m [moved from objc/stepA_mal.m with 100% similarity]
impls/objc/tests/step5_tco.mal [moved from objc/tests/step5_tco.mal with 100% similarity]
impls/objc/types.h [moved from objc/types.h with 100% similarity]
impls/objc/types.m [moved from objc/types.m with 100% similarity]
impls/objpascal/Dockerfile [moved from objpascal/Dockerfile with 100% similarity]
impls/objpascal/Makefile [moved from objpascal/Makefile with 100% similarity]
impls/objpascal/core.pas [moved from objpascal/core.pas with 100% similarity]
impls/objpascal/mal_env.pas [moved from objpascal/mal_env.pas with 100% similarity]
impls/objpascal/mal_func.pas [moved from objpascal/mal_func.pas with 100% similarity]
impls/objpascal/mal_readline.pas [moved from objpascal/mal_readline.pas with 100% similarity]
impls/objpascal/mal_types.pas [moved from objpascal/mal_types.pas with 100% similarity]
impls/objpascal/printer.pas [moved from objpascal/printer.pas with 100% similarity]
impls/objpascal/reader.pas [moved from objpascal/reader.pas with 100% similarity]
impls/objpascal/regexpr/Source/RegExpr.pas [moved from objpascal/regexpr/Source/RegExpr.pas with 100% similarity]
impls/objpascal/run [moved from objpascal/run with 100% similarity]
impls/objpascal/step0_repl.pas [moved from objpascal/step0_repl.pas with 100% similarity]
impls/objpascal/step1_read_print.pas [moved from objpascal/step1_read_print.pas with 100% similarity]
impls/objpascal/step2_eval.pas [moved from objpascal/step2_eval.pas with 100% similarity]
impls/objpascal/step3_env.pas [moved from objpascal/step3_env.pas with 100% similarity]
impls/objpascal/step4_if_fn_do.pas [moved from objpascal/step4_if_fn_do.pas with 100% similarity]
impls/objpascal/step5_tco.pas [moved from objpascal/step5_tco.pas with 100% similarity]
impls/objpascal/step6_file.pas [moved from objpascal/step6_file.pas with 100% similarity]
impls/objpascal/step7_quote.pas [moved from objpascal/step7_quote.pas with 100% similarity]
impls/objpascal/step8_macros.pas [moved from objpascal/step8_macros.pas with 100% similarity]
impls/objpascal/step9_try.pas [moved from objpascal/step9_try.pas with 100% similarity]
impls/objpascal/stepA_mal.pas [moved from objpascal/stepA_mal.pas with 100% similarity]
impls/objpascal/tests/step5_tco.mal [moved from objpascal/tests/step5_tco.mal with 100% similarity]
impls/ocaml/Dockerfile [moved from ocaml/Dockerfile with 100% similarity]
impls/ocaml/Makefile [moved from ocaml/Makefile with 100% similarity]
impls/ocaml/core.ml [moved from ocaml/core.ml with 100% similarity]
impls/ocaml/env.ml [moved from ocaml/env.ml with 100% similarity]
impls/ocaml/printer.ml [moved from ocaml/printer.ml with 100% similarity]
impls/ocaml/reader.ml [moved from ocaml/reader.ml with 100% similarity]
impls/ocaml/run [moved from ocaml/run with 100% similarity]
impls/ocaml/step0_repl.ml [moved from ocaml/step0_repl.ml with 100% similarity]
impls/ocaml/step1_read_print.ml [moved from ocaml/step1_read_print.ml with 100% similarity]
impls/ocaml/step2_eval.ml [moved from ocaml/step2_eval.ml with 100% similarity]
impls/ocaml/step3_env.ml [moved from ocaml/step3_env.ml with 100% similarity]
impls/ocaml/step4_if_fn_do.ml [moved from ocaml/step4_if_fn_do.ml with 100% similarity]
impls/ocaml/step5_tco.ml [moved from ocaml/step5_tco.ml with 100% similarity]
impls/ocaml/step6_file.ml [moved from ocaml/step6_file.ml with 100% similarity]
impls/ocaml/step7_quote.ml [moved from ocaml/step7_quote.ml with 100% similarity]
impls/ocaml/step8_macros.ml [moved from ocaml/step8_macros.ml with 100% similarity]
impls/ocaml/step9_try.ml [moved from ocaml/step9_try.ml with 100% similarity]
impls/ocaml/stepA_mal.ml [moved from ocaml/stepA_mal.ml with 100% similarity]
impls/ocaml/tests/step5_tco.mal [moved from ocaml/tests/step5_tco.mal with 100% similarity]
impls/ocaml/types.ml [moved from ocaml/types.ml with 100% similarity]
impls/perl/Dockerfile [moved from perl/Dockerfile with 100% similarity]
impls/perl/Makefile [moved from perl/Makefile with 100% similarity]
impls/perl/README.md [moved from perl/README.md with 100% similarity]
impls/perl/core.pm [moved from perl/core.pm with 100% similarity]
impls/perl/env.pm [moved from perl/env.pm with 100% similarity]
impls/perl/interop.pm [moved from perl/interop.pm with 100% similarity]
impls/perl/printer.pm [moved from perl/printer.pm with 100% similarity]
impls/perl/reader.pm [moved from perl/reader.pm with 100% similarity]
impls/perl/readline.pm [moved from perl/readline.pm with 100% similarity]
impls/perl/run [moved from perl/run with 100% similarity]
impls/perl/step0_repl.pl [moved from perl/step0_repl.pl with 100% similarity]
impls/perl/step1_read_print.pl [moved from perl/step1_read_print.pl with 100% similarity]
impls/perl/step2_eval.pl [moved from perl/step2_eval.pl with 100% similarity]
impls/perl/step3_env.pl [moved from perl/step3_env.pl with 100% similarity]
impls/perl/step4_if_fn_do.pl [moved from perl/step4_if_fn_do.pl with 100% similarity]
impls/perl/step5_tco.pl [moved from perl/step5_tco.pl with 100% similarity]
impls/perl/step6_file.pl [moved from perl/step6_file.pl with 100% similarity]
impls/perl/step7_quote.pl [moved from perl/step7_quote.pl with 100% similarity]
impls/perl/step8_macros.pl [moved from perl/step8_macros.pl with 100% similarity]
impls/perl/step9_try.pl [moved from perl/step9_try.pl with 100% similarity]
impls/perl/stepA_mal.pl [moved from perl/stepA_mal.pl with 100% similarity]
impls/perl/tests/step5_tco.mal [moved from perl/tests/step5_tco.mal with 100% similarity]
impls/perl/tests/stepA_mal.mal [moved from perl/tests/stepA_mal.mal with 100% similarity]
impls/perl/types.pm [moved from perl/types.pm with 100% similarity]
impls/perl6/Dockerfile [moved from perl6/Dockerfile with 100% similarity]
impls/perl6/Makefile [moved from perl6/Makefile with 100% similarity]
impls/perl6/core.pm [moved from perl6/core.pm with 100% similarity]
impls/perl6/env.pm [moved from perl6/env.pm with 100% similarity]
impls/perl6/printer.pm [moved from perl6/printer.pm with 100% similarity]
impls/perl6/reader.pm [moved from perl6/reader.pm with 100% similarity]
impls/perl6/run [moved from perl6/run with 100% similarity]
impls/perl6/step0_repl.pl [moved from perl6/step0_repl.pl with 100% similarity]
impls/perl6/step1_read_print.pl [moved from perl6/step1_read_print.pl with 100% similarity]
impls/perl6/step2_eval.pl [moved from perl6/step2_eval.pl with 100% similarity]
impls/perl6/step3_env.pl [moved from perl6/step3_env.pl with 100% similarity]
impls/perl6/step4_if_fn_do.pl [moved from perl6/step4_if_fn_do.pl with 100% similarity]
impls/perl6/step5_tco.pl [moved from perl6/step5_tco.pl with 100% similarity]
impls/perl6/step6_file.pl [moved from perl6/step6_file.pl with 100% similarity]
impls/perl6/step7_quote.pl [moved from perl6/step7_quote.pl with 100% similarity]
impls/perl6/step8_macros.pl [moved from perl6/step8_macros.pl with 100% similarity]
impls/perl6/step9_try.pl [moved from perl6/step9_try.pl with 100% similarity]
impls/perl6/stepA_mal.pl [moved from perl6/stepA_mal.pl with 100% similarity]
impls/perl6/tests/stepA_mal.mal [moved from perl6/tests/stepA_mal.mal with 100% similarity]
impls/perl6/types.pm [moved from perl6/types.pm with 100% similarity]
impls/php/Dockerfile [moved from php/Dockerfile with 100% similarity]
impls/php/Makefile [moved from php/Makefile with 100% similarity]
impls/php/README.md [moved from php/README.md with 100% similarity]
impls/php/core.php [moved from php/core.php with 100% similarity]
impls/php/env.php [moved from php/env.php with 100% similarity]
impls/php/interop.php [moved from php/interop.php with 100% similarity]
impls/php/printer.php [moved from php/printer.php with 100% similarity]
impls/php/reader.php [moved from php/reader.php with 100% similarity]
impls/php/readline.php [moved from php/readline.php with 100% similarity]
impls/php/run [moved from php/run with 100% similarity]
impls/php/step0_repl.php [moved from php/step0_repl.php with 100% similarity]
impls/php/step1_read_print.php [moved from php/step1_read_print.php with 100% similarity]
impls/php/step2_eval.php [moved from php/step2_eval.php with 100% similarity]
impls/php/step3_env.php [moved from php/step3_env.php with 100% similarity]
impls/php/step4_if_fn_do.php [moved from php/step4_if_fn_do.php with 100% similarity]
impls/php/step5_tco.php [moved from php/step5_tco.php with 100% similarity]
impls/php/step6_file.php [moved from php/step6_file.php with 100% similarity]
impls/php/step7_quote.php [moved from php/step7_quote.php with 100% similarity]
impls/php/step8_macros.php [moved from php/step8_macros.php with 100% similarity]
impls/php/step9_try.php [moved from php/step9_try.php with 100% similarity]
impls/php/stepA_mal.php [moved from php/stepA_mal.php with 100% similarity]
impls/php/tests/step5_tco.mal [moved from php/tests/step5_tco.mal with 100% similarity]
impls/php/tests/stepA_mal.mal [moved from php/tests/stepA_mal.mal with 100% similarity]
impls/php/types.php [moved from php/types.php with 100% similarity]
impls/php/webrunner.php [moved from php/webrunner.php with 100% similarity]
impls/picolisp/Dockerfile [moved from picolisp/Dockerfile with 100% similarity]
impls/picolisp/Makefile [moved from picolisp/Makefile with 100% similarity]
impls/picolisp/core.l [moved from picolisp/core.l with 100% similarity]
impls/picolisp/env.l [moved from picolisp/env.l with 100% similarity]
impls/picolisp/func.l [moved from picolisp/func.l with 100% similarity]
impls/picolisp/printer.l [moved from picolisp/printer.l with 100% similarity]
impls/picolisp/reader.l [moved from picolisp/reader.l with 100% similarity]
impls/picolisp/readline.l [moved from picolisp/readline.l with 100% similarity]
impls/picolisp/run [moved from picolisp/run with 100% similarity]
impls/picolisp/step0_repl.l [moved from picolisp/step0_repl.l with 100% similarity]
impls/picolisp/step1_read_print.l [moved from picolisp/step1_read_print.l with 100% similarity]
impls/picolisp/step2_eval.l [moved from picolisp/step2_eval.l with 100% similarity]
impls/picolisp/step3_env.l [moved from picolisp/step3_env.l with 100% similarity]
impls/picolisp/step4_if_fn_do.l [moved from picolisp/step4_if_fn_do.l with 100% similarity]
impls/picolisp/step5_tco.l [moved from picolisp/step5_tco.l with 100% similarity]
impls/picolisp/step6_file.l [moved from picolisp/step6_file.l with 100% similarity]
impls/picolisp/step7_quote.l [moved from picolisp/step7_quote.l with 100% similarity]
impls/picolisp/step8_macros.l [moved from picolisp/step8_macros.l with 100% similarity]
impls/picolisp/step9_try.l [moved from picolisp/step9_try.l with 100% similarity]
impls/picolisp/stepA_mal.l [moved from picolisp/stepA_mal.l with 100% similarity]
impls/picolisp/tests/step5_tco.mal [moved from picolisp/tests/step5_tco.mal with 100% similarity]
impls/picolisp/tests/stepA_mal.mal [moved from picolisp/tests/stepA_mal.mal with 100% similarity]
impls/picolisp/types.l [moved from picolisp/types.l with 100% similarity]
impls/pike/Core.pmod [moved from pike/Core.pmod with 100% similarity]
impls/pike/Dockerfile [moved from pike/Dockerfile with 100% similarity]
impls/pike/Env.pmod [moved from pike/Env.pmod with 100% similarity]
impls/pike/Interop.pmod [moved from pike/Interop.pmod with 100% similarity]
impls/pike/Makefile [moved from pike/Makefile with 100% similarity]
impls/pike/Printer.pmod [moved from pike/Printer.pmod with 100% similarity]
impls/pike/Reader.pmod [moved from pike/Reader.pmod with 100% similarity]
impls/pike/Readline.pmod [moved from pike/Readline.pmod with 100% similarity]
impls/pike/Types.pmod [moved from pike/Types.pmod with 100% similarity]
impls/pike/run [moved from pike/run with 100% similarity]
impls/pike/step0_repl.pike [moved from pike/step0_repl.pike with 100% similarity]
impls/pike/step1_read_print.pike [moved from pike/step1_read_print.pike with 100% similarity]
impls/pike/step2_eval.pike [moved from pike/step2_eval.pike with 100% similarity]
impls/pike/step3_env.pike [moved from pike/step3_env.pike with 100% similarity]
impls/pike/step4_if_fn_do.pike [moved from pike/step4_if_fn_do.pike with 100% similarity]
impls/pike/step5_tco.pike [moved from pike/step5_tco.pike with 100% similarity]
impls/pike/step6_file.pike [moved from pike/step6_file.pike with 100% similarity]
impls/pike/step7_quote.pike [moved from pike/step7_quote.pike with 100% similarity]
impls/pike/step8_macros.pike [moved from pike/step8_macros.pike with 100% similarity]
impls/pike/step9_try.pike [moved from pike/step9_try.pike with 100% similarity]
impls/pike/stepA_mal.pike [moved from pike/stepA_mal.pike with 100% similarity]
impls/pike/tests/step5_tco.mal [moved from pike/tests/step5_tco.mal with 100% similarity]
impls/pike/tests/stepA_mal.mal [moved from pike/tests/stepA_mal.mal with 100% similarity]
impls/plpgsql/Dockerfile [moved from plpgsql/Dockerfile with 100% similarity]
impls/plpgsql/Makefile [moved from plpgsql/Makefile with 100% similarity]
impls/plpgsql/core.sql [moved from plpgsql/core.sql with 100% similarity]
impls/plpgsql/entrypoint.sh [moved from plpgsql/entrypoint.sh with 100% similarity]
impls/plpgsql/envs.sql [moved from plpgsql/envs.sql with 100% similarity]
impls/plpgsql/init.sql [moved from plpgsql/init.sql with 100% similarity]
impls/plpgsql/io.sql [moved from plpgsql/io.sql with 100% similarity]
impls/plpgsql/printer.sql [moved from plpgsql/printer.sql with 100% similarity]
impls/plpgsql/reader.sql [moved from plpgsql/reader.sql with 100% similarity]
impls/plpgsql/run [moved from plpgsql/run with 100% similarity]
impls/plpgsql/step0_repl.sql [moved from plpgsql/step0_repl.sql with 100% similarity]
impls/plpgsql/step1_read_print.sql [moved from plpgsql/step1_read_print.sql with 100% similarity]
impls/plpgsql/step2_eval.sql [moved from plpgsql/step2_eval.sql with 100% similarity]
impls/plpgsql/step3_env.sql [moved from plpgsql/step3_env.sql with 100% similarity]
impls/plpgsql/step4_if_fn_do.sql [moved from plpgsql/step4_if_fn_do.sql with 100% similarity]
impls/plpgsql/step5_tco.sql [moved from plpgsql/step5_tco.sql with 100% similarity]
impls/plpgsql/step6_file.sql [moved from plpgsql/step6_file.sql with 100% similarity]
impls/plpgsql/step7_quote.sql [moved from plpgsql/step7_quote.sql with 100% similarity]
impls/plpgsql/step8_macros.sql [moved from plpgsql/step8_macros.sql with 100% similarity]
impls/plpgsql/step9_try.sql [moved from plpgsql/step9_try.sql with 100% similarity]
impls/plpgsql/stepA_mal.sql [moved from plpgsql/stepA_mal.sql with 100% similarity]
impls/plpgsql/types.sql [moved from plpgsql/types.sql with 100% similarity]
impls/plpgsql/wrap.sh [moved from plpgsql/wrap.sh with 100% similarity]
impls/plsql/Dockerfile [moved from plsql/Dockerfile with 100% similarity]
impls/plsql/Dockerfile-oracle [moved from plsql/Dockerfile-oracle with 100% similarity]
impls/plsql/Dockerfile-postgres [moved from plsql/Dockerfile-postgres with 100% similarity]
impls/plsql/Makefile [moved from plsql/Makefile with 100% similarity]
impls/plsql/core.sql [moved from plsql/core.sql with 100% similarity]
impls/plsql/entrypoint.sh [moved from plsql/entrypoint.sh with 100% similarity]
impls/plsql/env.sql [moved from plsql/env.sql with 100% similarity]
impls/plsql/io.sql [moved from plsql/io.sql with 100% similarity]
impls/plsql/login.sql [moved from plsql/login.sql with 100% similarity]
impls/plsql/printer.sql [moved from plsql/printer.sql with 100% similarity]
impls/plsql/reader.sql [moved from plsql/reader.sql with 100% similarity]
impls/plsql/run [moved from plsql/run with 100% similarity]
impls/plsql/step0_repl.sql [moved from plsql/step0_repl.sql with 100% similarity]
impls/plsql/step1_read_print.sql [moved from plsql/step1_read_print.sql with 100% similarity]
impls/plsql/step2_eval.sql [moved from plsql/step2_eval.sql with 100% similarity]
impls/plsql/step3_env.sql [moved from plsql/step3_env.sql with 100% similarity]
impls/plsql/step4_if_fn_do.sql [moved from plsql/step4_if_fn_do.sql with 100% similarity]
impls/plsql/step5_tco.sql [moved from plsql/step5_tco.sql with 100% similarity]
impls/plsql/step6_file.sql [moved from plsql/step6_file.sql with 100% similarity]
impls/plsql/step7_quote.sql [moved from plsql/step7_quote.sql with 100% similarity]
impls/plsql/step8_macros.sql [moved from plsql/step8_macros.sql with 100% similarity]
impls/plsql/step9_try.sql [moved from plsql/step9_try.sql with 100% similarity]
impls/plsql/stepA_mal.sql [moved from plsql/stepA_mal.sql with 100% similarity]
impls/plsql/types.sql [moved from plsql/types.sql with 100% similarity]
impls/plsql/wrap.sh [moved from plsql/wrap.sh with 100% similarity]
impls/powershell/Dockerfile [moved from powershell/Dockerfile with 100% similarity]
impls/powershell/Makefile [moved from powershell/Makefile with 100% similarity]
impls/powershell/core.psm1 [moved from powershell/core.psm1 with 100% similarity]
impls/powershell/env.psm1 [moved from powershell/env.psm1 with 100% similarity]
impls/powershell/printer.psm1 [moved from powershell/printer.psm1 with 100% similarity]
impls/powershell/reader.psm1 [moved from powershell/reader.psm1 with 100% similarity]
impls/powershell/run [moved from powershell/run with 100% similarity]
impls/powershell/step0_repl.ps1 [moved from powershell/step0_repl.ps1 with 100% similarity]
impls/powershell/step1_read_print.ps1 [moved from powershell/step1_read_print.ps1 with 100% similarity]
impls/powershell/step2_eval.ps1 [moved from powershell/step2_eval.ps1 with 100% similarity]
impls/powershell/step3_env.ps1 [moved from powershell/step3_env.ps1 with 100% similarity]
impls/powershell/step4_if_fn_do.ps1 [moved from powershell/step4_if_fn_do.ps1 with 100% similarity]
impls/powershell/step5_tco.ps1 [moved from powershell/step5_tco.ps1 with 100% similarity]
impls/powershell/step6_file.ps1 [moved from powershell/step6_file.ps1 with 100% similarity]
impls/powershell/step7_quote.ps1 [moved from powershell/step7_quote.ps1 with 100% similarity]
impls/powershell/step8_macros.ps1 [moved from powershell/step8_macros.ps1 with 100% similarity]
impls/powershell/step9_try.ps1 [moved from powershell/step9_try.ps1 with 100% similarity]
impls/powershell/stepA_mal.ps1 [moved from powershell/stepA_mal.ps1 with 100% similarity]
impls/powershell/types.psm1 [moved from powershell/types.psm1 with 100% similarity]
impls/ps/Dockerfile [moved from ps/Dockerfile with 100% similarity]
impls/ps/Makefile [moved from ps/Makefile with 100% similarity]
impls/ps/core.ps [moved from ps/core.ps with 100% similarity]
impls/ps/env.ps [moved from ps/env.ps with 100% similarity]
impls/ps/interop.ps [moved from ps/interop.ps with 100% similarity]
impls/ps/printer.ps [moved from ps/printer.ps with 100% similarity]
impls/ps/reader.ps [moved from ps/reader.ps with 100% similarity]
impls/ps/run [moved from ps/run with 100% similarity]
impls/ps/step0_repl.ps [moved from ps/step0_repl.ps with 100% similarity]
impls/ps/step1_read_print.ps [moved from ps/step1_read_print.ps with 100% similarity]
impls/ps/step2_eval.ps [moved from ps/step2_eval.ps with 100% similarity]
impls/ps/step3_env.ps [moved from ps/step3_env.ps with 100% similarity]
impls/ps/step4_if_fn_do.ps [moved from ps/step4_if_fn_do.ps with 100% similarity]
impls/ps/step5_tco.ps [moved from ps/step5_tco.ps with 100% similarity]
impls/ps/step6_file.ps [moved from ps/step6_file.ps with 100% similarity]
impls/ps/step7_quote.ps [moved from ps/step7_quote.ps with 100% similarity]
impls/ps/step8_macros.ps [moved from ps/step8_macros.ps with 100% similarity]
impls/ps/step9_try.ps [moved from ps/step9_try.ps with 100% similarity]
impls/ps/stepA_mal.ps [moved from ps/stepA_mal.ps with 100% similarity]
impls/ps/tests/step5_tco.mal [moved from ps/tests/step5_tco.mal with 100% similarity]
impls/ps/tests/stepA_mal.mal [moved from ps/tests/stepA_mal.mal with 100% similarity]
impls/ps/types.ps [moved from ps/types.ps with 100% similarity]
impls/python.2/.gitignore [moved from python.2/.gitignore with 100% similarity]
impls/python.2/Dockerfile [moved from python.2/Dockerfile with 100% similarity]
impls/python.2/Makefile [moved from python.2/Makefile with 100% similarity]
impls/python.2/core.py [moved from python.2/core.py with 100% similarity]
impls/python.2/env.py [moved from python.2/env.py with 100% similarity]
impls/python.2/mal_types.py [moved from python.2/mal_types.py with 100% similarity]
impls/python.2/reader.py [moved from python.2/reader.py with 100% similarity]
impls/python.2/run [moved from python.2/run with 100% similarity]
impls/python.2/step0_repl.py [moved from python.2/step0_repl.py with 100% similarity]
impls/python.2/step1_read_print.py [moved from python.2/step1_read_print.py with 100% similarity]
impls/python.2/step2_eval.py [moved from python.2/step2_eval.py with 100% similarity]
impls/python.2/step3_env.py [moved from python.2/step3_env.py with 100% similarity]
impls/python.2/step4_if_fn_do.py [moved from python.2/step4_if_fn_do.py with 100% similarity]
impls/python.2/step5_tco.py [moved from python.2/step5_tco.py with 100% similarity]
impls/python.2/step6_file.py [moved from python.2/step6_file.py with 100% similarity]
impls/python.2/step7_quote.py [moved from python.2/step7_quote.py with 100% similarity]
impls/python.2/step8_macros.py [moved from python.2/step8_macros.py with 100% similarity]
impls/python.2/step9_try.py [moved from python.2/step9_try.py with 100% similarity]
impls/python.2/stepA_mal.py [moved from python.2/stepA_mal.py with 100% similarity]
impls/python.2/tests/__init__.py [moved from python.2/tests/__init__.py with 100% similarity]
impls/python.2/tests/test_step2.py [moved from python.2/tests/test_step2.py with 100% similarity]
impls/python.2/tests/test_step3.py [moved from python.2/tests/test_step3.py with 100% similarity]
impls/python.2/tests/test_step4.py [moved from python.2/tests/test_step4.py with 100% similarity]
impls/python.2/tests/test_step5.py [moved from python.2/tests/test_step5.py with 100% similarity]
impls/python.2/tests/test_step6.py [moved from python.2/tests/test_step6.py with 100% similarity]
impls/python.2/tests/test_step7.py [moved from python.2/tests/test_step7.py with 100% similarity]
impls/python.2/tests/test_step8.py [moved from python.2/tests/test_step8.py with 100% similarity]
impls/python.2/tests/test_step9.py [moved from python.2/tests/test_step9.py with 100% similarity]
impls/python.2/tests/test_stepA.py [moved from python.2/tests/test_stepA.py with 100% similarity]
impls/python/Dockerfile [moved from python/Dockerfile with 100% similarity]
impls/python/Makefile [moved from python/Makefile with 100% similarity]
impls/python/core.py [moved from python/core.py with 100% similarity]
impls/python/env.py [moved from python/env.py with 100% similarity]
impls/python/mal_readline.py [moved from python/mal_readline.py with 100% similarity]
impls/python/mal_types.py [moved from python/mal_types.py with 100% similarity]
impls/python/printer.py [moved from python/printer.py with 100% similarity]
impls/python/reader.py [moved from python/reader.py with 100% similarity]
impls/python/run [moved from python/run with 100% similarity]
impls/python/step0_repl.py [moved from python/step0_repl.py with 100% similarity]
impls/python/step1_read_print.py [moved from python/step1_read_print.py with 100% similarity]
impls/python/step2_eval.py [moved from python/step2_eval.py with 100% similarity]
impls/python/step3_env.py [moved from python/step3_env.py with 100% similarity]
impls/python/step4_if_fn_do.py [moved from python/step4_if_fn_do.py with 100% similarity]
impls/python/step5_tco.py [moved from python/step5_tco.py with 100% similarity]
impls/python/step6_file.py [moved from python/step6_file.py with 100% similarity]
impls/python/step7_quote.py [moved from python/step7_quote.py with 100% similarity]
impls/python/step8_macros.py [moved from python/step8_macros.py with 100% similarity]
impls/python/step9_try.py [moved from python/step9_try.py with 100% similarity]
impls/python/stepA_mal.py [moved from python/stepA_mal.py with 100% similarity]
impls/python/tests/step5_tco.mal [moved from python/tests/step5_tco.mal with 100% similarity]
impls/python/tests/stepA_mal.mal [moved from python/tests/stepA_mal.mal with 100% similarity]
impls/r/Dockerfile [moved from r/Dockerfile with 100% similarity]
impls/r/Makefile [moved from r/Makefile with 100% similarity]
impls/r/core.r [moved from r/core.r with 100% similarity]
impls/r/env.r [moved from r/env.r with 100% similarity]
impls/r/printer.r [moved from r/printer.r with 100% similarity]
impls/r/reader.r [moved from r/reader.r with 100% similarity]
impls/r/readline.r [moved from r/readline.r with 100% similarity]
impls/r/run [moved from r/run with 100% similarity]
impls/r/step0_repl.r [moved from r/step0_repl.r with 100% similarity]
impls/r/step1_read_print.r [moved from r/step1_read_print.r with 100% similarity]
impls/r/step2_eval.r [moved from r/step2_eval.r with 100% similarity]
impls/r/step3_env.r [moved from r/step3_env.r with 100% similarity]
impls/r/step4_if_fn_do.r [moved from r/step4_if_fn_do.r with 100% similarity]
impls/r/step5_tco.r [moved from r/step5_tco.r with 100% similarity]
impls/r/step6_file.r [moved from r/step6_file.r with 100% similarity]
impls/r/step7_quote.r [moved from r/step7_quote.r with 100% similarity]
impls/r/step8_macros.r [moved from r/step8_macros.r with 100% similarity]
impls/r/step9_try.r [moved from r/step9_try.r with 100% similarity]
impls/r/stepA_mal.r [moved from r/stepA_mal.r with 100% similarity]
impls/r/tests/step5_tco.mal [moved from r/tests/step5_tco.mal with 100% similarity]
impls/r/types.r [moved from r/types.r with 100% similarity]
impls/racket/Dockerfile [moved from racket/Dockerfile with 100% similarity]
impls/racket/Makefile [moved from racket/Makefile with 100% similarity]
impls/racket/core.rkt [moved from racket/core.rkt with 100% similarity]
impls/racket/env.rkt [moved from racket/env.rkt with 100% similarity]
impls/racket/printer.rkt [moved from racket/printer.rkt with 100% similarity]
impls/racket/reader.rkt [moved from racket/reader.rkt with 100% similarity]
impls/racket/readline.rkt [moved from racket/readline.rkt with 100% similarity]
impls/racket/run [moved from racket/run with 100% similarity]
impls/racket/step0_repl.rkt [moved from racket/step0_repl.rkt with 100% similarity]
impls/racket/step1_read_print.rkt [moved from racket/step1_read_print.rkt with 100% similarity]
impls/racket/step2_eval.rkt [moved from racket/step2_eval.rkt with 100% similarity]
impls/racket/step3_env.rkt [moved from racket/step3_env.rkt with 100% similarity]
impls/racket/step4_if_fn_do.rkt [moved from racket/step4_if_fn_do.rkt with 100% similarity]
impls/racket/step5_tco.rkt [moved from racket/step5_tco.rkt with 100% similarity]
impls/racket/step6_file.rkt [moved from racket/step6_file.rkt with 100% similarity]
impls/racket/step7_quote.rkt [moved from racket/step7_quote.rkt with 100% similarity]
impls/racket/step8_macros.rkt [moved from racket/step8_macros.rkt with 100% similarity]
impls/racket/step9_try.rkt [moved from racket/step9_try.rkt with 100% similarity]
impls/racket/stepA_mal.rkt [moved from racket/stepA_mal.rkt with 100% similarity]
impls/racket/tests/step5_tco.mal [moved from racket/tests/step5_tco.mal with 100% similarity]
impls/racket/types.rkt [moved from racket/types.rkt with 100% similarity]
impls/rexx/.gitignore [moved from rexx/.gitignore with 100% similarity]
impls/rexx/Dockerfile [moved from rexx/Dockerfile with 100% similarity]
impls/rexx/Makefile [moved from rexx/Makefile with 100% similarity]
impls/rexx/core.rexx [moved from rexx/core.rexx with 100% similarity]
impls/rexx/env.rexx [moved from rexx/env.rexx with 100% similarity]
impls/rexx/printer.rexx [moved from rexx/printer.rexx with 100% similarity]
impls/rexx/reader.rexx [moved from rexx/reader.rexx with 100% similarity]
impls/rexx/readline.rexx [moved from rexx/readline.rexx with 100% similarity]
impls/rexx/run [moved from rexx/run with 100% similarity]
impls/rexx/step0_repl.rexx [moved from rexx/step0_repl.rexx with 100% similarity]
impls/rexx/step1_read_print.rexx [moved from rexx/step1_read_print.rexx with 100% similarity]
impls/rexx/step2_eval.rexx [moved from rexx/step2_eval.rexx with 100% similarity]
impls/rexx/step3_env.rexx [moved from rexx/step3_env.rexx with 100% similarity]
impls/rexx/step4_if_fn_do.rexx [moved from rexx/step4_if_fn_do.rexx with 100% similarity]
impls/rexx/step5_tco.rexx [moved from rexx/step5_tco.rexx with 100% similarity]
impls/rexx/step6_file.rexx [moved from rexx/step6_file.rexx with 100% similarity]
impls/rexx/step7_quote.rexx [moved from rexx/step7_quote.rexx with 100% similarity]
impls/rexx/step8_macros.rexx [moved from rexx/step8_macros.rexx with 100% similarity]
impls/rexx/step9_try.rexx [moved from rexx/step9_try.rexx with 100% similarity]
impls/rexx/stepA_mal.rexx [moved from rexx/stepA_mal.rexx with 100% similarity]
impls/rexx/tests/step5_tco.mal [moved from rexx/tests/step5_tco.mal with 100% similarity]
impls/rexx/tests/stepA_mal.mal [moved from rexx/tests/stepA_mal.mal with 100% similarity]
impls/rexx/types.rexx [moved from rexx/types.rexx with 100% similarity]
impls/rpython/Dockerfile [moved from rpython/Dockerfile with 100% similarity]
impls/rpython/Makefile [moved from rpython/Makefile with 100% similarity]
impls/rpython/core.py [moved from rpython/core.py with 100% similarity]
impls/rpython/env.py [moved from rpython/env.py with 100% similarity]
impls/rpython/mal_readline.py [moved from rpython/mal_readline.py with 100% similarity]
impls/rpython/mal_types.py [moved from rpython/mal_types.py with 100% similarity]
impls/rpython/printer.py [moved from rpython/printer.py with 100% similarity]
impls/rpython/reader.py [moved from rpython/reader.py with 100% similarity]
impls/rpython/run [moved from rpython/run with 100% similarity]
impls/rpython/step0_repl.py [moved from rpython/step0_repl.py with 100% similarity]
impls/rpython/step1_read_print.py [moved from rpython/step1_read_print.py with 100% similarity]
impls/rpython/step2_eval.py [moved from rpython/step2_eval.py with 100% similarity]
impls/rpython/step3_env.py [moved from rpython/step3_env.py with 100% similarity]
impls/rpython/step4_if_fn_do.py [moved from rpython/step4_if_fn_do.py with 100% similarity]
impls/rpython/step5_tco.py [moved from rpython/step5_tco.py with 100% similarity]
impls/rpython/step6_file.py [moved from rpython/step6_file.py with 100% similarity]
impls/rpython/step7_quote.py [moved from rpython/step7_quote.py with 100% similarity]
impls/rpython/step8_macros.py [moved from rpython/step8_macros.py with 100% similarity]
impls/rpython/step9_try.py [moved from rpython/step9_try.py with 100% similarity]
impls/rpython/stepA_mal.py [moved from rpython/stepA_mal.py with 100% similarity]
impls/rpython/tests/step5_tco.mal [moved from rpython/tests/step5_tco.mal with 100% similarity]
impls/ruby/Dockerfile [moved from ruby/Dockerfile with 100% similarity]
impls/ruby/Makefile [moved from ruby/Makefile with 100% similarity]
impls/ruby/core.rb [moved from ruby/core.rb with 100% similarity]
impls/ruby/env.rb [moved from ruby/env.rb with 100% similarity]
impls/ruby/mal_readline.rb [moved from ruby/mal_readline.rb with 100% similarity]
impls/ruby/printer.rb [moved from ruby/printer.rb with 100% similarity]
impls/ruby/reader.rb [moved from ruby/reader.rb with 100% similarity]
impls/ruby/run [moved from ruby/run with 100% similarity]
impls/ruby/step0_repl.rb [moved from ruby/step0_repl.rb with 100% similarity]
impls/ruby/step1_read_print.rb [moved from ruby/step1_read_print.rb with 100% similarity]
impls/ruby/step2_eval.rb [moved from ruby/step2_eval.rb with 100% similarity]
impls/ruby/step3_env.rb [moved from ruby/step3_env.rb with 100% similarity]
impls/ruby/step4_if_fn_do.rb [moved from ruby/step4_if_fn_do.rb with 100% similarity]
impls/ruby/step5_tco.rb [moved from ruby/step5_tco.rb with 100% similarity]
impls/ruby/step6_file.rb [moved from ruby/step6_file.rb with 100% similarity]
impls/ruby/step7_quote.rb [moved from ruby/step7_quote.rb with 100% similarity]
impls/ruby/step8_macros.rb [moved from ruby/step8_macros.rb with 100% similarity]
impls/ruby/step9_try.rb [moved from ruby/step9_try.rb with 100% similarity]
impls/ruby/stepA_mal.rb [moved from ruby/stepA_mal.rb with 100% similarity]
impls/ruby/tests/step5_tco.mal [moved from ruby/tests/step5_tco.mal with 100% similarity]
impls/ruby/tests/stepA_mal.mal [moved from ruby/tests/stepA_mal.mal with 100% similarity]
impls/ruby/types.rb [moved from ruby/types.rb with 100% similarity]
impls/rust/.gitignore [moved from rust/.gitignore with 100% similarity]
impls/rust/Cargo.lock [moved from rust/Cargo.lock with 100% similarity]
impls/rust/Cargo.toml [moved from rust/Cargo.toml with 100% similarity]
impls/rust/Dockerfile [moved from rust/Dockerfile with 100% similarity]
impls/rust/Makefile [moved from rust/Makefile with 100% similarity]
impls/rust/core.rs [moved from rust/core.rs with 100% similarity]
impls/rust/env.rs [moved from rust/env.rs with 100% similarity]
impls/rust/printer.rs [moved from rust/printer.rs with 100% similarity]
impls/rust/reader.rs [moved from rust/reader.rs with 100% similarity]
impls/rust/run [moved from rust/run with 100% similarity]
impls/rust/step0_repl.rs [moved from rust/step0_repl.rs with 100% similarity]
impls/rust/step1_read_print.rs [moved from rust/step1_read_print.rs with 100% similarity]
impls/rust/step2_eval.rs [moved from rust/step2_eval.rs with 100% similarity]
impls/rust/step3_env.rs [moved from rust/step3_env.rs with 100% similarity]
impls/rust/step4_if_fn_do.rs [moved from rust/step4_if_fn_do.rs with 100% similarity]
impls/rust/step5_tco.rs [moved from rust/step5_tco.rs with 100% similarity]
impls/rust/step6_file.rs [moved from rust/step6_file.rs with 100% similarity]
impls/rust/step7_quote.rs [moved from rust/step7_quote.rs with 100% similarity]
impls/rust/step8_macros.rs [moved from rust/step8_macros.rs with 100% similarity]
impls/rust/step9_try.rs [moved from rust/step9_try.rs with 100% similarity]
impls/rust/stepA_mal.rs [moved from rust/stepA_mal.rs with 100% similarity]
impls/rust/types.rs [moved from rust/types.rs with 100% similarity]
impls/scala/Dockerfile [moved from scala/Dockerfile with 100% similarity]
impls/scala/Makefile [moved from scala/Makefile with 100% similarity]
impls/scala/assembly.sbt [moved from scala/assembly.sbt with 100% similarity]
impls/scala/build.sbt [moved from scala/build.sbt with 100% similarity]
impls/scala/core.scala [moved from scala/core.scala with 100% similarity]
impls/scala/env.scala [moved from scala/env.scala with 100% similarity]
impls/scala/printer.scala [moved from scala/printer.scala with 100% similarity]
impls/scala/project/assembly.sbt [moved from scala/project/assembly.sbt with 100% similarity]
impls/scala/reader.scala [moved from scala/reader.scala with 100% similarity]
impls/scala/run [moved from scala/run with 100% similarity]
impls/scala/step0_repl.scala [moved from scala/step0_repl.scala with 100% similarity]
impls/scala/step1_read_print.scala [moved from scala/step1_read_print.scala with 100% similarity]
impls/scala/step2_eval.scala [moved from scala/step2_eval.scala with 100% similarity]
impls/scala/step3_env.scala [moved from scala/step3_env.scala with 100% similarity]
impls/scala/step4_if_fn_do.scala [moved from scala/step4_if_fn_do.scala with 100% similarity]
impls/scala/step5_tco.scala [moved from scala/step5_tco.scala with 100% similarity]
impls/scala/step6_file.scala [moved from scala/step6_file.scala with 100% similarity]
impls/scala/step7_quote.scala [moved from scala/step7_quote.scala with 100% similarity]
impls/scala/step8_macros.scala [moved from scala/step8_macros.scala with 100% similarity]
impls/scala/step9_try.scala [moved from scala/step9_try.scala with 100% similarity]
impls/scala/stepA_mal.scala [moved from scala/stepA_mal.scala with 100% similarity]
impls/scala/tests/step5_tco.mal [moved from scala/tests/step5_tco.mal with 100% similarity]
impls/scala/types.scala [moved from scala/types.scala with 100% similarity]
impls/scheme/.gitignore [moved from scheme/.gitignore with 100% similarity]
impls/scheme/Dockerfile [moved from scheme/Dockerfile with 100% similarity]
impls/scheme/Makefile [moved from scheme/Makefile with 100% similarity]
impls/scheme/eggs/.keep [moved from scheme/eggs/.keep with 100% similarity]
impls/scheme/lib/core.sld [moved from scheme/lib/core.sld with 100% similarity]
impls/scheme/lib/env.sld [moved from scheme/lib/env.sld with 100% similarity]
impls/scheme/lib/printer.sld [moved from scheme/lib/printer.sld with 100% similarity]
impls/scheme/lib/reader.sld [moved from scheme/lib/reader.sld with 100% similarity]
impls/scheme/lib/types.sld [moved from scheme/lib/types.sld with 100% similarity]
impls/scheme/lib/util.sld [moved from scheme/lib/util.sld with 100% similarity]
impls/scheme/run [moved from scheme/run with 100% similarity]
impls/scheme/step0_repl.scm [moved from scheme/step0_repl.scm with 100% similarity]
impls/scheme/step1_read_print.scm [moved from scheme/step1_read_print.scm with 100% similarity]
impls/scheme/step2_eval.scm [moved from scheme/step2_eval.scm with 100% similarity]
impls/scheme/step3_env.scm [moved from scheme/step3_env.scm with 100% similarity]
impls/scheme/step4_if_fn_do.scm [moved from scheme/step4_if_fn_do.scm with 100% similarity]
impls/scheme/step5_tco.scm [moved from scheme/step5_tco.scm with 100% similarity]
impls/scheme/step6_file.scm [moved from scheme/step6_file.scm with 100% similarity]
impls/scheme/step7_quote.scm [moved from scheme/step7_quote.scm with 100% similarity]
impls/scheme/step8_macros.scm [moved from scheme/step8_macros.scm with 100% similarity]
impls/scheme/step9_try.scm [moved from scheme/step9_try.scm with 100% similarity]
impls/scheme/stepA_mal.scm [moved from scheme/stepA_mal.scm with 100% similarity]
impls/scheme/tests/stepA_mal.mal [moved from scheme/tests/stepA_mal.mal with 100% similarity]
impls/skew/Dockerfile [moved from skew/Dockerfile with 100% similarity]
impls/skew/Makefile [moved from skew/Makefile with 100% similarity]
impls/skew/core.sk [moved from skew/core.sk with 100% similarity]
impls/skew/env.sk [moved from skew/env.sk with 100% similarity]
impls/skew/printer.sk [moved from skew/printer.sk with 100% similarity]
impls/skew/reader.sk [moved from skew/reader.sk with 100% similarity]
impls/skew/run [moved from skew/run with 100% similarity]
impls/skew/step0_repl.sk [moved from skew/step0_repl.sk with 100% similarity]
impls/skew/step1_read_print.sk [moved from skew/step1_read_print.sk with 100% similarity]
impls/skew/step2_eval.sk [moved from skew/step2_eval.sk with 100% similarity]
impls/skew/step3_env.sk [moved from skew/step3_env.sk with 100% similarity]
impls/skew/step4_if_fn_do.sk [moved from skew/step4_if_fn_do.sk with 100% similarity]
impls/skew/step5_tco.sk [moved from skew/step5_tco.sk with 100% similarity]
impls/skew/step6_file.sk [moved from skew/step6_file.sk with 100% similarity]
impls/skew/step7_quote.sk [moved from skew/step7_quote.sk with 100% similarity]
impls/skew/step8_macros.sk [moved from skew/step8_macros.sk with 100% similarity]
impls/skew/step9_try.sk [moved from skew/step9_try.sk with 100% similarity]
impls/skew/stepA_mal.sk [moved from skew/stepA_mal.sk with 100% similarity]
impls/skew/tests/step5_tco.mal [moved from skew/tests/step5_tco.mal with 100% similarity]
impls/skew/types.sk [moved from skew/types.sk with 100% similarity]
impls/skew/util.sk [moved from skew/util.sk with 100% similarity]
impls/swift/Makefile [moved from swift/Makefile with 100% similarity]
impls/swift/bridging-header.h [moved from swift/bridging-header.h with 100% similarity]
impls/swift/core.swift [moved from swift/core.swift with 100% similarity]
impls/swift/env.swift [moved from swift/env.swift with 100% similarity]
impls/swift/main.swift [moved from swift/main.swift with 100% similarity]
impls/swift/printer.swift [moved from swift/printer.swift with 100% similarity]
impls/swift/reader.swift [moved from swift/reader.swift with 100% similarity]
impls/swift/readline.swift [moved from swift/readline.swift with 100% similarity]
impls/swift/run [moved from swift/run with 100% similarity]
impls/swift/step0_repl.swift [moved from swift/step0_repl.swift with 100% similarity]
impls/swift/step1_read_print.swift [moved from swift/step1_read_print.swift with 100% similarity]
impls/swift/step2_eval.swift [moved from swift/step2_eval.swift with 100% similarity]
impls/swift/step3_env.swift [moved from swift/step3_env.swift with 100% similarity]
impls/swift/step4_if_fn_do.swift [moved from swift/step4_if_fn_do.swift with 100% similarity]
impls/swift/step5_tco.swift [moved from swift/step5_tco.swift with 100% similarity]
impls/swift/step6_file.swift [moved from swift/step6_file.swift with 100% similarity]
impls/swift/step7_quote.swift [moved from swift/step7_quote.swift with 100% similarity]
impls/swift/step8_macros.swift [moved from swift/step8_macros.swift with 100% similarity]
impls/swift/step9_try.swift [moved from swift/step9_try.swift with 100% similarity]
impls/swift/stepA_mal.swift [moved from swift/stepA_mal.swift with 100% similarity]
impls/swift/templates/add_steps.sh [moved from swift/templates/add_steps.sh with 100% similarity]
impls/swift/templates/filter_steps.sh [moved from swift/templates/filter_steps.sh with 100% similarity]
impls/swift/templates/step.swift [moved from swift/templates/step.swift with 100% similarity]
impls/swift/tests/step5_tco.mal [moved from swift/tests/step5_tco.mal with 100% similarity]
impls/swift/types_class.swift [moved from swift/types_class.swift with 100% similarity]
impls/swift/types_enum.swift [moved from swift/types_enum.swift with 100% similarity]
impls/swift3/Dockerfile [moved from swift3/Dockerfile with 100% similarity]
impls/swift3/Makefile [moved from swift3/Makefile with 100% similarity]
impls/swift3/Sources/core.swift [moved from swift3/Sources/core.swift with 100% similarity]
impls/swift3/Sources/env.swift [moved from swift3/Sources/env.swift with 100% similarity]
impls/swift3/Sources/printer.swift [moved from swift3/Sources/printer.swift with 100% similarity]
impls/swift3/Sources/reader.swift [moved from swift3/Sources/reader.swift with 100% similarity]
impls/swift3/Sources/step0_repl/main.swift [moved from swift3/Sources/step0_repl/main.swift with 100% similarity]
impls/swift3/Sources/step1_read_print/main.swift [moved from swift3/Sources/step1_read_print/main.swift with 100% similarity]
impls/swift3/Sources/step2_eval/main.swift [moved from swift3/Sources/step2_eval/main.swift with 100% similarity]
impls/swift3/Sources/step3_env/main.swift [moved from swift3/Sources/step3_env/main.swift with 100% similarity]
impls/swift3/Sources/step4_if_fn_do/main.swift [moved from swift3/Sources/step4_if_fn_do/main.swift with 100% similarity]
impls/swift3/Sources/step5_tco/main.swift [moved from swift3/Sources/step5_tco/main.swift with 100% similarity]
impls/swift3/Sources/step6_file/main.swift [moved from swift3/Sources/step6_file/main.swift with 100% similarity]
impls/swift3/Sources/step7_quote/main.swift [moved from swift3/Sources/step7_quote/main.swift with 100% similarity]
impls/swift3/Sources/step8_macros/main.swift [moved from swift3/Sources/step8_macros/main.swift with 100% similarity]
impls/swift3/Sources/step9_try/main.swift [moved from swift3/Sources/step9_try/main.swift with 100% similarity]
impls/swift3/Sources/stepA_mal/main.swift [moved from swift3/Sources/stepA_mal/main.swift with 100% similarity]
impls/swift3/Sources/types.swift [moved from swift3/Sources/types.swift with 100% similarity]
impls/swift3/run [moved from swift3/run with 100% similarity]
impls/swift3/tests/step5_tco.mal [moved from swift3/tests/step5_tco.mal with 100% similarity]
impls/swift4/Dockerfile [moved from swift4/Dockerfile with 100% similarity]
impls/swift4/Makefile [moved from swift4/Makefile with 100% similarity]
impls/swift4/Sources/core.swift [moved from swift4/Sources/core.swift with 100% similarity]
impls/swift4/Sources/env.swift [moved from swift4/Sources/env.swift with 100% similarity]
impls/swift4/Sources/printer.swift [moved from swift4/Sources/printer.swift with 100% similarity]
impls/swift4/Sources/reader.swift [moved from swift4/Sources/reader.swift with 100% similarity]
impls/swift4/Sources/step0_repl/main.swift [moved from swift4/Sources/step0_repl/main.swift with 100% similarity]
impls/swift4/Sources/step1_read_print/main.swift [moved from swift4/Sources/step1_read_print/main.swift with 100% similarity]
impls/swift4/Sources/step2_eval/main.swift [moved from swift4/Sources/step2_eval/main.swift with 100% similarity]
impls/swift4/Sources/step3_env/main.swift [moved from swift4/Sources/step3_env/main.swift with 100% similarity]
impls/swift4/Sources/step4_if_fn_do/main.swift [moved from swift4/Sources/step4_if_fn_do/main.swift with 100% similarity]
impls/swift4/Sources/step5_tco/main.swift [moved from swift4/Sources/step5_tco/main.swift with 100% similarity]
impls/swift4/Sources/step6_file/main.swift [moved from swift4/Sources/step6_file/main.swift with 100% similarity]
impls/swift4/Sources/step7_quote/main.swift [moved from swift4/Sources/step7_quote/main.swift with 100% similarity]
impls/swift4/Sources/step8_macros/main.swift [moved from swift4/Sources/step8_macros/main.swift with 100% similarity]
impls/swift4/Sources/step9_try/main.swift [moved from swift4/Sources/step9_try/main.swift with 100% similarity]
impls/swift4/Sources/stepA_mal/main.swift [moved from swift4/Sources/stepA_mal/main.swift with 100% similarity]
impls/swift4/Sources/types.swift [moved from swift4/Sources/types.swift with 100% similarity]
impls/swift4/run [moved from swift4/run with 100% similarity]
impls/swift5/.gitignore [moved from swift5/.gitignore with 100% similarity]
impls/swift5/Dockerfile [moved from swift5/Dockerfile with 100% similarity]
impls/swift5/Makefile [moved from swift5/Makefile with 100% similarity]
impls/swift5/Package.swift [moved from swift5/Package.swift with 100% similarity]
impls/swift5/Sources/core/Core.swift [moved from swift5/Sources/core/Core.swift with 100% similarity]
impls/swift5/Sources/core/Env.swift [moved from swift5/Sources/core/Env.swift with 100% similarity]
impls/swift5/Sources/core/Errors.swift [moved from swift5/Sources/core/Errors.swift with 100% similarity]
impls/swift5/Sources/core/Parser.swift [moved from swift5/Sources/core/Parser.swift with 100% similarity]
impls/swift5/Sources/core/Printer.swift [moved from swift5/Sources/core/Printer.swift with 100% similarity]
impls/swift5/Sources/core/Reader.swift [moved from swift5/Sources/core/Reader.swift with 100% similarity]
impls/swift5/Sources/core/Types.swift [moved from swift5/Sources/core/Types.swift with 100% similarity]
impls/swift5/Sources/core/Utils.swift [moved from swift5/Sources/core/Utils.swift with 100% similarity]
impls/swift5/Sources/step0_repl/main.swift [moved from swift5/Sources/step0_repl/main.swift with 100% similarity]
impls/swift5/Sources/step1_read_print/main.swift [moved from swift5/Sources/step1_read_print/main.swift with 100% similarity]
impls/swift5/Sources/step2_eval/main.swift [moved from swift5/Sources/step2_eval/main.swift with 100% similarity]
impls/swift5/Sources/step3_env/main.swift [moved from swift5/Sources/step3_env/main.swift with 100% similarity]
impls/swift5/Sources/step4_if_fn_do/main.swift [moved from swift5/Sources/step4_if_fn_do/main.swift with 100% similarity]
impls/swift5/Sources/step5_tco/main.swift [moved from swift5/Sources/step5_tco/main.swift with 100% similarity]
impls/swift5/Sources/step6_file/main.swift [moved from swift5/Sources/step6_file/main.swift with 100% similarity]
impls/swift5/Sources/step7_quote/main.swift [moved from swift5/Sources/step7_quote/main.swift with 100% similarity]
impls/swift5/Sources/step8_macros/main.swift [moved from swift5/Sources/step8_macros/main.swift with 100% similarity]
impls/swift5/Sources/step9_try/main.swift [moved from swift5/Sources/step9_try/main.swift with 100% similarity]
impls/swift5/Sources/stepA_mal/main.swift [moved from swift5/Sources/stepA_mal/main.swift with 100% similarity]
impls/swift5/run [moved from swift5/run with 100% similarity]
impls/tcl/Dockerfile [moved from tcl/Dockerfile with 100% similarity]
impls/tcl/Makefile [moved from tcl/Makefile with 100% similarity]
impls/tcl/core.tcl [moved from tcl/core.tcl with 100% similarity]
impls/tcl/env.tcl [moved from tcl/env.tcl with 100% similarity]
impls/tcl/mal_readline.tcl [moved from tcl/mal_readline.tcl with 100% similarity]
impls/tcl/printer.tcl [moved from tcl/printer.tcl with 100% similarity]
impls/tcl/reader.tcl [moved from tcl/reader.tcl with 100% similarity]
impls/tcl/run [moved from tcl/run with 100% similarity]
impls/tcl/step0_repl.tcl [moved from tcl/step0_repl.tcl with 100% similarity]
impls/tcl/step1_read_print.tcl [moved from tcl/step1_read_print.tcl with 100% similarity]
impls/tcl/step2_eval.tcl [moved from tcl/step2_eval.tcl with 100% similarity]
impls/tcl/step3_env.tcl [moved from tcl/step3_env.tcl with 100% similarity]
impls/tcl/step4_if_fn_do.tcl [moved from tcl/step4_if_fn_do.tcl with 100% similarity]
impls/tcl/step5_tco.tcl [moved from tcl/step5_tco.tcl with 100% similarity]
impls/tcl/step6_file.tcl [moved from tcl/step6_file.tcl with 100% similarity]
impls/tcl/step7_quote.tcl [moved from tcl/step7_quote.tcl with 100% similarity]
impls/tcl/step8_macros.tcl [moved from tcl/step8_macros.tcl with 100% similarity]
impls/tcl/step9_try.tcl [moved from tcl/step9_try.tcl with 100% similarity]
impls/tcl/stepA_mal.tcl [moved from tcl/stepA_mal.tcl with 100% similarity]
impls/tcl/tests/step5_tco.mal [moved from tcl/tests/step5_tco.mal with 100% similarity]
impls/tcl/tests/stepA_mal.mal [moved from tcl/tests/stepA_mal.mal with 100% similarity]
impls/tcl/types.tcl [moved from tcl/types.tcl with 100% similarity]
impls/tests/computations.mal [moved from tests/computations.mal with 100% similarity]
impls/tests/docker-build.sh [moved from tests/docker-build.sh with 100% similarity]
impls/tests/docker-run.sh [moved from tests/docker-run.sh with 100% similarity]
impls/tests/docker/Dockerfile [moved from tests/docker/Dockerfile with 100% similarity]
impls/tests/inc.mal [moved from tests/inc.mal with 100% similarity]
impls/tests/incA.mal [moved from tests/incA.mal with 100% similarity]
impls/tests/incB.mal [moved from tests/incB.mal with 100% similarity]
impls/tests/incC.mal [moved from tests/incC.mal with 100% similarity]
impls/tests/lib/alias-hacks.mal [moved from tests/lib/alias-hacks.mal with 100% similarity]
impls/tests/lib/equality.mal [moved from tests/lib/equality.mal with 100% similarity]
impls/tests/lib/load-file-once-inc.mal [moved from tests/lib/load-file-once-inc.mal with 100% similarity]
impls/tests/lib/load-file-once.mal [moved from tests/lib/load-file-once.mal with 100% similarity]
impls/tests/lib/memoize.mal [moved from tests/lib/memoize.mal with 100% similarity]
impls/tests/lib/pprint.mal [moved from tests/lib/pprint.mal with 100% similarity]
impls/tests/lib/protocols.mal [moved from tests/lib/protocols.mal with 100% similarity]
impls/tests/lib/reducers.mal [moved from tests/lib/reducers.mal with 100% similarity]
impls/tests/lib/test_cascade.mal [moved from tests/lib/test_cascade.mal with 100% similarity]
impls/tests/lib/threading.mal [moved from tests/lib/threading.mal with 100% similarity]
impls/tests/lib/trivial.mal [moved from tests/lib/trivial.mal with 100% similarity]
impls/tests/perf1.mal [moved from tests/perf1.mal with 100% similarity]
impls/tests/perf2.mal [moved from tests/perf2.mal with 100% similarity]
impls/tests/perf3.mal [moved from tests/perf3.mal with 100% similarity]
impls/tests/print_argv.mal [moved from tests/print_argv.mal with 100% similarity]
impls/tests/run_argv_test.sh [moved from run_argv_test.sh with 78% similarity]
impls/tests/step0_repl.mal [moved from tests/step0_repl.mal with 100% similarity]
impls/tests/step1_read_print.mal [moved from tests/step1_read_print.mal with 100% similarity]
impls/tests/step2_eval.mal [moved from tests/step2_eval.mal with 100% similarity]
impls/tests/step3_env.mal [moved from tests/step3_env.mal with 100% similarity]
impls/tests/step4_if_fn_do.mal [moved from tests/step4_if_fn_do.mal with 100% similarity]
impls/tests/step5_tco.mal [moved from tests/step5_tco.mal with 100% similarity]
impls/tests/step6_file.mal [moved from tests/step6_file.mal with 100% similarity]
impls/tests/step7_quote.mal [moved from tests/step7_quote.mal with 100% similarity]
impls/tests/step8_macros.mal [moved from tests/step8_macros.mal with 100% similarity]
impls/tests/step9_try.mal [moved from tests/step9_try.mal with 100% similarity]
impls/tests/stepA_mal.mal [moved from tests/stepA_mal.mal with 100% similarity]
impls/tests/test.txt [moved from tests/test.txt with 100% similarity]
impls/tests/travis_trigger.sh [moved from tests/travis_trigger.sh with 100% similarity]
impls/ts/.gitignore [moved from ts/.gitignore with 100% similarity]
impls/ts/Dockerfile [moved from ts/Dockerfile with 100% similarity]
impls/ts/Makefile [moved from ts/Makefile with 100% similarity]
impls/ts/core.ts [moved from ts/core.ts with 100% similarity]
impls/ts/env.ts [moved from ts/env.ts with 100% similarity]
impls/ts/node_readline.ts [moved from ts/node_readline.ts with 100% similarity]
impls/ts/package.json [moved from ts/package.json with 100% similarity]
impls/ts/printer.ts [moved from ts/printer.ts with 100% similarity]
impls/ts/reader.ts [moved from ts/reader.ts with 100% similarity]
impls/ts/run [moved from ts/run with 100% similarity]
impls/ts/step0_repl.ts [moved from ts/step0_repl.ts with 100% similarity]
impls/ts/step1_read_print.ts [moved from ts/step1_read_print.ts with 100% similarity]
impls/ts/step2_eval.ts [moved from ts/step2_eval.ts with 100% similarity]
impls/ts/step3_env.ts [moved from ts/step3_env.ts with 100% similarity]
impls/ts/step4_if_fn_do.ts [moved from ts/step4_if_fn_do.ts with 100% similarity]
impls/ts/step5_tco.ts [moved from ts/step5_tco.ts with 100% similarity]
impls/ts/step6_file.ts [moved from ts/step6_file.ts with 100% similarity]
impls/ts/step7_quote.ts [moved from ts/step7_quote.ts with 100% similarity]
impls/ts/step8_macros.ts [moved from ts/step8_macros.ts with 100% similarity]
impls/ts/step9_try.ts [moved from ts/step9_try.ts with 100% similarity]
impls/ts/stepA_mal.ts [moved from ts/stepA_mal.ts with 100% similarity]
impls/ts/tsconfig.json [moved from ts/tsconfig.json with 100% similarity]
impls/ts/types.ts [moved from ts/types.ts with 100% similarity]
impls/vala/.gitignore [moved from vala/.gitignore with 100% similarity]
impls/vala/Dockerfile [moved from vala/Dockerfile with 100% similarity]
impls/vala/Makefile [moved from vala/Makefile with 100% similarity]
impls/vala/README.md [moved from vala/README.md with 100% similarity]
impls/vala/core.vala [moved from vala/core.vala with 100% similarity]
impls/vala/env.vala [moved from vala/env.vala with 100% similarity]
impls/vala/gc.vala [moved from vala/gc.vala with 100% similarity]
impls/vala/printer.vala [moved from vala/printer.vala with 100% similarity]
impls/vala/reader.vala [moved from vala/reader.vala with 100% similarity]
impls/vala/run [moved from vala/run with 100% similarity]
impls/vala/step0_repl.vala [moved from vala/step0_repl.vala with 100% similarity]
impls/vala/step1_read_print.vala [moved from vala/step1_read_print.vala with 100% similarity]
impls/vala/step2_eval.vala [moved from vala/step2_eval.vala with 100% similarity]
impls/vala/step3_env.vala [moved from vala/step3_env.vala with 100% similarity]
impls/vala/step4_if_fn_do.vala [moved from vala/step4_if_fn_do.vala with 100% similarity]
impls/vala/step5_tco.vala [moved from vala/step5_tco.vala with 100% similarity]
impls/vala/step6_file.vala [moved from vala/step6_file.vala with 100% similarity]
impls/vala/step7_quote.vala [moved from vala/step7_quote.vala with 100% similarity]
impls/vala/step8_macros.vala [moved from vala/step8_macros.vala with 100% similarity]
impls/vala/step9_try.vala [moved from vala/step9_try.vala with 100% similarity]
impls/vala/stepA_mal.vala [moved from vala/stepA_mal.vala with 100% similarity]
impls/vala/types.vala [moved from vala/types.vala with 100% similarity]
impls/vb/Dockerfile [moved from vb/Dockerfile with 100% similarity]
impls/vb/Makefile [moved from vb/Makefile with 100% similarity]
impls/vb/core.vb [moved from vb/core.vb with 100% similarity]
impls/vb/env.vb [moved from vb/env.vb with 100% similarity]
impls/vb/getline.cs [moved from vb/getline.cs with 100% similarity]
impls/vb/printer.vb [moved from vb/printer.vb with 100% similarity]
impls/vb/reader.vb [moved from vb/reader.vb with 100% similarity]
impls/vb/readline.vb [moved from vb/readline.vb with 100% similarity]
impls/vb/run [moved from vb/run with 100% similarity]
impls/vb/step0_repl.vb [moved from vb/step0_repl.vb with 100% similarity]
impls/vb/step1_read_print.vb [moved from vb/step1_read_print.vb with 100% similarity]
impls/vb/step2_eval.vb [moved from vb/step2_eval.vb with 100% similarity]
impls/vb/step3_env.vb [moved from vb/step3_env.vb with 100% similarity]
impls/vb/step4_if_fn_do.vb [moved from vb/step4_if_fn_do.vb with 100% similarity]
impls/vb/step5_tco.vb [moved from vb/step5_tco.vb with 100% similarity]
impls/vb/step6_file.vb [moved from vb/step6_file.vb with 100% similarity]
impls/vb/step7_quote.vb [moved from vb/step7_quote.vb with 100% similarity]
impls/vb/step8_macros.vb [moved from vb/step8_macros.vb with 100% similarity]
impls/vb/step9_try.vb [moved from vb/step9_try.vb with 100% similarity]
impls/vb/stepA_mal.vb [moved from vb/stepA_mal.vb with 100% similarity]
impls/vb/tests/step5_tco.mal [moved from vb/tests/step5_tco.mal with 100% similarity]
impls/vb/types.vb [moved from vb/types.vb with 100% similarity]
impls/vhdl/.gitignore [moved from vhdl/.gitignore with 100% similarity]
impls/vhdl/Dockerfile [moved from vhdl/Dockerfile with 100% similarity]
impls/vhdl/Makefile [moved from vhdl/Makefile with 100% similarity]
impls/vhdl/core.vhdl [moved from vhdl/core.vhdl with 100% similarity]
impls/vhdl/env.vhdl [moved from vhdl/env.vhdl with 100% similarity]
impls/vhdl/pkg_readline.vhdl [moved from vhdl/pkg_readline.vhdl with 100% similarity]
impls/vhdl/printer.vhdl [moved from vhdl/printer.vhdl with 100% similarity]
impls/vhdl/reader.vhdl [moved from vhdl/reader.vhdl with 100% similarity]
impls/vhdl/run [moved from vhdl/run with 100% similarity]
impls/vhdl/run_vhdl.sh [moved from vhdl/run_vhdl.sh with 100% similarity]
impls/vhdl/step0_repl.vhdl [moved from vhdl/step0_repl.vhdl with 100% similarity]
impls/vhdl/step1_read_print.vhdl [moved from vhdl/step1_read_print.vhdl with 100% similarity]
impls/vhdl/step2_eval.vhdl [moved from vhdl/step2_eval.vhdl with 100% similarity]
impls/vhdl/step3_env.vhdl [moved from vhdl/step3_env.vhdl with 100% similarity]
impls/vhdl/step4_if_fn_do.vhdl [moved from vhdl/step4_if_fn_do.vhdl with 100% similarity]
impls/vhdl/step5_tco.vhdl [moved from vhdl/step5_tco.vhdl with 100% similarity]
impls/vhdl/step6_file.vhdl [moved from vhdl/step6_file.vhdl with 100% similarity]
impls/vhdl/step7_quote.vhdl [moved from vhdl/step7_quote.vhdl with 100% similarity]
impls/vhdl/step8_macros.vhdl [moved from vhdl/step8_macros.vhdl with 100% similarity]
impls/vhdl/step9_try.vhdl [moved from vhdl/step9_try.vhdl with 100% similarity]
impls/vhdl/stepA_mal.vhdl [moved from vhdl/stepA_mal.vhdl with 100% similarity]
impls/vhdl/types.vhdl [moved from vhdl/types.vhdl with 100% similarity]
impls/vimscript/.gitignore [moved from vimscript/.gitignore with 100% similarity]
impls/vimscript/Dockerfile [moved from vimscript/Dockerfile with 100% similarity]
impls/vimscript/Makefile [moved from vimscript/Makefile with 100% similarity]
impls/vimscript/core.vim [moved from vimscript/core.vim with 100% similarity]
impls/vimscript/env.vim [moved from vimscript/env.vim with 100% similarity]
impls/vimscript/printer.vim [moved from vimscript/printer.vim with 100% similarity]
impls/vimscript/reader.vim [moved from vimscript/reader.vim with 100% similarity]
impls/vimscript/readline.vim [moved from vimscript/readline.vim with 100% similarity]
impls/vimscript/run [moved from vimscript/run with 100% similarity]
impls/vimscript/run_vimscript.sh [moved from vimscript/run_vimscript.sh with 100% similarity]
impls/vimscript/step0_repl.vim [moved from vimscript/step0_repl.vim with 100% similarity]
impls/vimscript/step1_read_print.vim [moved from vimscript/step1_read_print.vim with 100% similarity]
impls/vimscript/step2_eval.vim [moved from vimscript/step2_eval.vim with 100% similarity]
impls/vimscript/step3_env.vim [moved from vimscript/step3_env.vim with 100% similarity]
impls/vimscript/step4_if_fn_do.vim [moved from vimscript/step4_if_fn_do.vim with 100% similarity]
impls/vimscript/step5_tco.vim [moved from vimscript/step5_tco.vim with 100% similarity]
impls/vimscript/step6_file.vim [moved from vimscript/step6_file.vim with 100% similarity]
impls/vimscript/step7_quote.vim [moved from vimscript/step7_quote.vim with 100% similarity]
impls/vimscript/step8_macros.vim [moved from vimscript/step8_macros.vim with 100% similarity]
impls/vimscript/step9_try.vim [moved from vimscript/step9_try.vim with 100% similarity]
impls/vimscript/stepA_mal.vim [moved from vimscript/stepA_mal.vim with 100% similarity]
impls/vimscript/tests/step5_tco.mal [moved from vimscript/tests/step5_tco.mal with 100% similarity]
impls/vimscript/tests/stepA_mal.mal [moved from vimscript/tests/stepA_mal.mal with 100% similarity]
impls/vimscript/types.vim [moved from vimscript/types.vim with 100% similarity]
impls/vimscript/vimextras.c [moved from vimscript/vimextras.c with 100% similarity]
impls/wasm/Dockerfile [moved from wasm/Dockerfile with 100% similarity]
impls/wasm/Makefile [moved from wasm/Makefile with 100% similarity]
impls/wasm/core.wam [moved from wasm/core.wam with 100% similarity]
impls/wasm/debug.wam [moved from wasm/debug.wam with 100% similarity]
impls/wasm/env.wam [moved from wasm/env.wam with 100% similarity]
impls/wasm/mem.wam [moved from wasm/mem.wam with 100% similarity]
impls/wasm/node_readline.js [moved from wasm/node_readline.js with 100% similarity]
impls/wasm/package.json [moved from wasm/package.json with 100% similarity]
impls/wasm/platform_direct.wam [moved from wasm/platform_direct.wam with 100% similarity]
impls/wasm/platform_libc.wam [moved from wasm/platform_libc.wam with 100% similarity]
impls/wasm/platform_wasi.wam [moved from wasm/platform_wasi.wam with 100% similarity]
impls/wasm/printer.wam [moved from wasm/printer.wam with 100% similarity]
impls/wasm/printf.wam [moved from wasm/printf.wam with 100% similarity]
impls/wasm/reader.wam [moved from wasm/reader.wam with 100% similarity]
impls/wasm/run [moved from wasm/run with 100% similarity]
impls/wasm/run.js [moved from wasm/run.js with 100% similarity]
impls/wasm/step0_repl.wam [moved from wasm/step0_repl.wam with 100% similarity]
impls/wasm/step1_read_print.wam [moved from wasm/step1_read_print.wam with 100% similarity]
impls/wasm/step2_eval.wam [moved from wasm/step2_eval.wam with 100% similarity]
impls/wasm/step3_env.wam [moved from wasm/step3_env.wam with 100% similarity]
impls/wasm/step4_if_fn_do.wam [moved from wasm/step4_if_fn_do.wam with 100% similarity]
impls/wasm/step5_tco.wam [moved from wasm/step5_tco.wam with 100% similarity]
impls/wasm/step6_file.wam [moved from wasm/step6_file.wam with 100% similarity]
impls/wasm/step7_quote.wam [moved from wasm/step7_quote.wam with 100% similarity]
impls/wasm/step8_macros.wam [moved from wasm/step8_macros.wam with 100% similarity]
impls/wasm/step9_try.wam [moved from wasm/step9_try.wam with 100% similarity]
impls/wasm/stepA_mal.wam [moved from wasm/stepA_mal.wam with 100% similarity]
impls/wasm/string.wam [moved from wasm/string.wam with 100% similarity]
impls/wasm/types.wam [moved from wasm/types.wam with 100% similarity]
impls/wren/Dockerfile [moved from wren/Dockerfile with 100% similarity]
impls/wren/Makefile [moved from wren/Makefile with 100% similarity]
impls/wren/README.md [moved from wren/README.md with 100% similarity]
impls/wren/core.wren [moved from wren/core.wren with 100% similarity]
impls/wren/env.wren [moved from wren/env.wren with 100% similarity]
impls/wren/interop.wren [moved from wren/interop.wren with 100% similarity]
impls/wren/printer.wren [moved from wren/printer.wren with 100% similarity]
impls/wren/reader.wren [moved from wren/reader.wren with 100% similarity]
impls/wren/readline.wren [moved from wren/readline.wren with 100% similarity]
impls/wren/run [moved from wren/run with 100% similarity]
impls/wren/step0_repl.wren [moved from wren/step0_repl.wren with 100% similarity]
impls/wren/step1_read_print.wren [moved from wren/step1_read_print.wren with 100% similarity]
impls/wren/step2_eval.wren [moved from wren/step2_eval.wren with 100% similarity]
impls/wren/step3_env.wren [moved from wren/step3_env.wren with 100% similarity]
impls/wren/step4_if_fn_do.wren [moved from wren/step4_if_fn_do.wren with 100% similarity]
impls/wren/step5_tco.wren [moved from wren/step5_tco.wren with 100% similarity]
impls/wren/step6_file.wren [moved from wren/step6_file.wren with 100% similarity]
impls/wren/step7_quote.wren [moved from wren/step7_quote.wren with 100% similarity]
impls/wren/step8_macros.wren [moved from wren/step8_macros.wren with 100% similarity]
impls/wren/step9_try.wren [moved from wren/step9_try.wren with 100% similarity]
impls/wren/stepA_mal.wren [moved from wren/stepA_mal.wren with 100% similarity]
impls/wren/tests/step5_tco.mal [moved from wren/tests/step5_tco.mal with 100% similarity]
impls/wren/tests/stepA_mal.mal [moved from wren/tests/stepA_mal.mal with 100% similarity]
impls/wren/types.wren [moved from wren/types.wren with 100% similarity]
impls/wren/wren-add-gettimeofday.patch [moved from wren/wren-add-gettimeofday.patch with 100% similarity]
impls/yorick/Dockerfile [moved from yorick/Dockerfile with 100% similarity]
impls/yorick/Makefile [moved from yorick/Makefile with 100% similarity]
impls/yorick/core.i [moved from yorick/core.i with 100% similarity]
impls/yorick/env.i [moved from yorick/env.i with 100% similarity]
impls/yorick/hash.i [moved from yorick/hash.i with 100% similarity]
impls/yorick/printer.i [moved from yorick/printer.i with 100% similarity]
impls/yorick/reader.i [moved from yorick/reader.i with 100% similarity]
impls/yorick/run [moved from yorick/run with 100% similarity]
impls/yorick/step0_repl.i [moved from yorick/step0_repl.i with 100% similarity]
impls/yorick/step1_read_print.i [moved from yorick/step1_read_print.i with 100% similarity]
impls/yorick/step2_eval.i [moved from yorick/step2_eval.i with 100% similarity]
impls/yorick/step3_env.i [moved from yorick/step3_env.i with 100% similarity]
impls/yorick/step4_if_fn_do.i [moved from yorick/step4_if_fn_do.i with 100% similarity]
impls/yorick/step5_tco.i [moved from yorick/step5_tco.i with 100% similarity]
impls/yorick/step6_file.i [moved from yorick/step6_file.i with 100% similarity]
impls/yorick/step7_quote.i [moved from yorick/step7_quote.i with 100% similarity]
impls/yorick/step8_macros.i [moved from yorick/step8_macros.i with 100% similarity]
impls/yorick/step9_try.i [moved from yorick/step9_try.i with 100% similarity]
impls/yorick/stepA_mal.i [moved from yorick/stepA_mal.i with 100% similarity]
impls/yorick/tests/stepA_mal.mal [moved from yorick/tests/stepA_mal.mal with 100% similarity]
impls/yorick/types.i [moved from yorick/types.i with 100% similarity]
impls/zig/Dockerfile [moved from zig/Dockerfile with 100% similarity]
impls/zig/Makefile [moved from zig/Makefile with 100% similarity]
impls/zig/build.zig [moved from zig/build.zig with 100% similarity]
impls/zig/core.zig [moved from zig/core.zig with 100% similarity]
impls/zig/env.zig [moved from zig/env.zig with 100% similarity]
impls/zig/error.zig [moved from zig/error.zig with 100% similarity]
impls/zig/hmap.zig [moved from zig/hmap.zig with 100% similarity]
impls/zig/linked_list.zig [moved from zig/linked_list.zig with 100% similarity]
impls/zig/logging_alloc.zig [moved from zig/logging_alloc.zig with 100% similarity]
impls/zig/printer.zig [moved from zig/printer.zig with 100% similarity]
impls/zig/reader.zig [moved from zig/reader.zig with 100% similarity]
impls/zig/readline.zig [moved from zig/readline.zig with 100% similarity]
impls/zig/run [moved from zig/run with 100% similarity]
impls/zig/step0_repl.zig [moved from zig/step0_repl.zig with 100% similarity]
impls/zig/step1_read_print.zig [moved from zig/step1_read_print.zig with 100% similarity]
impls/zig/step2_eval.zig [moved from zig/step2_eval.zig with 100% similarity]
impls/zig/step3_env.zig [moved from zig/step3_env.zig with 100% similarity]
impls/zig/step4_if_fn_do.zig [moved from zig/step4_if_fn_do.zig with 100% similarity]
impls/zig/step5_tco.zig [moved from zig/step5_tco.zig with 100% similarity]
impls/zig/step6_file.zig [moved from zig/step6_file.zig with 100% similarity]
impls/zig/step7_quote.zig [moved from zig/step7_quote.zig with 100% similarity]
impls/zig/step8_macros.zig [moved from zig/step8_macros.zig with 100% similarity]
impls/zig/step9_try.zig [moved from zig/step9_try.zig with 100% similarity]
impls/zig/stepA_mal.zig [moved from zig/stepA_mal.zig with 100% similarity]
impls/zig/types.zig [moved from zig/types.zig with 100% similarity]
impls/zig/utils.zig [moved from zig/utils.zig with 100% similarity]
lib [new symlink]
tests [new symlink]