├── .gitignore ├── Compiled ├── array-reverse │ ├── args.txt │ ├── rev.c │ └── rev.go ├── compilers.txt └── fibonacci-recursive │ ├── args.txt │ ├── fib.c │ ├── fib.cpp │ ├── fib.go │ ├── fib.ml │ └── fib.scala ├── Interpreted ├── ackermann-function │ ├── ack.awk │ ├── ack.clj │ ├── ack.cr │ ├── ack.exs │ ├── ack.gvy │ ├── ack.jl │ ├── ack.lua │ ├── ack.ml │ ├── ack.mrb │ ├── ack.php │ ├── ack.pike │ ├── ack.pl │ ├── ack.py │ ├── ack.rb │ ├── ack.sc │ ├── ack.tcl │ └── args.txt ├── coin-sums │ ├── args.txt │ ├── csum.awk │ ├── csum.cr │ ├── csum.gvy │ ├── csum.jl │ ├── csum.lua │ ├── csum.php │ ├── csum.pike │ ├── csum.pl │ ├── csum.py │ ├── csum.rb │ └── csum.sc ├── fibonacci-recursive │ ├── args.txt │ ├── fib.awk │ ├── fib.clj │ ├── fib.cr │ ├── fib.exs │ ├── fib.gvy │ ├── fib.jl │ ├── fib.lua │ ├── fib.ml │ ├── fib.mrb │ ├── fib.php │ ├── fib.pike │ ├── fib.pl │ ├── fib.py │ ├── fib.rb │ ├── fib.sc │ ├── fib.tcl │ └── ignore.txt ├── interpreters.txt ├── lcs-recursive │ ├── args.txt │ ├── lcs.awk │ ├── lcs.clj │ ├── lcs.cr │ ├── lcs.gvy │ ├── lcs.jl │ ├── lcs.lua │ ├── lcs.php │ ├── lcs.pike │ ├── lcs.pl │ ├── lcs.py │ ├── lcs.rb │ ├── lcs.sc │ └── lcs.tcl ├── lev-distance-recursive │ ├── args.txt │ ├── lev.awk │ ├── lev.clj │ ├── lev.cr │ ├── lev.exs │ ├── lev.gvy │ ├── lev.jl │ ├── lev.lua │ ├── lev.ml │ ├── lev.mrb │ ├── lev.php │ ├── lev.pike │ ├── lev.pl │ ├── lev.py │ ├── lev.rb │ └── lev.sc ├── man-or-boy │ ├── args.txt │ ├── mob.clj │ ├── mob.cr │ ├── mob.gvy │ ├── mob.jl │ ├── mob.lua │ ├── mob.ml │ ├── mob.mrb │ ├── mob.php │ ├── mob.pl │ ├── mob.pl6 │ ├── mob.py │ ├── mob.rb │ ├── mob.sc │ └── mob.tcl ├── mutual-recursion │ ├── args.txt │ ├── mrec.awk │ ├── mrec.clj │ ├── mrec.cr │ ├── mrec.exs │ ├── mrec.gvy │ ├── mrec.jl │ ├── mrec.lua │ ├── mrec.ml │ ├── mrec.mrb │ ├── mrec.php │ ├── mrec.pike │ ├── mrec.pl │ ├── mrec.py │ ├── mrec.rb │ ├── mrec.sc │ └── mrec.tcl └── tak-function │ ├── args.txt │ ├── tak.awk │ ├── tak.clj │ ├── tak.cr │ ├── tak.exs │ ├── tak.gvy │ ├── tak.jl │ ├── tak.lua │ ├── tak.ml │ ├── tak.mrb │ ├── tak.php │ ├── tak.pike │ ├── tak.pl │ ├── tak.py │ ├── tak.rb │ ├── tak.sc │ └── tak.tcl ├── LICENSE ├── README.md ├── Reports ├── Compiled │ ├── array-reverse 1000000 1000.csv │ ├── fibonacci-recursive 40.csv │ ├── man-or-boy 15.csv │ ├── man-or-boy 16.csv │ └── man-or-boy 20.csv ├── Interpreted │ ├── ackermann-function 3 9.csv │ ├── coin-sums 0 250.csv │ ├── fibonacci-recursive 35.csv │ ├── lcs-recursive thisisatest testing123testingtrizen.csv │ ├── lev-distance-recursive rosettacode raisethysword.csv │ ├── man-or-boy 12.csv │ ├── mutual-recursion 130.csv │ └── tak-function 30 22 12.csv ├── create_final_report.pl └── overview.csv ├── Stats └── Interpreted │ ├── ack-function-3-9.png │ ├── all.png │ ├── coin-sums-0-250.png │ ├── fibonacci-35.png │ ├── lcs-test.png │ ├── lev-distance.png │ ├── man-or-boy-12.png │ ├── mutual-recursion-130.png │ └── tak-30-22-12.png ├── benchmark.pl └── update_names.sf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /Compiled/array-reverse/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/array-reverse/args.txt -------------------------------------------------------------------------------- /Compiled/array-reverse/rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/array-reverse/rev.c -------------------------------------------------------------------------------- /Compiled/array-reverse/rev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/array-reverse/rev.go -------------------------------------------------------------------------------- /Compiled/compilers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/compilers.txt -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/args.txt: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/fibonacci-recursive/fib.c -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/fibonacci-recursive/fib.cpp -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/fibonacci-recursive/fib.go -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/fib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/fibonacci-recursive/fib.ml -------------------------------------------------------------------------------- /Compiled/fibonacci-recursive/fib.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Compiled/fibonacci-recursive/fib.scala -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.awk -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.clj -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.cr -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.exs -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.gvy -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.jl -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.lua -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.ml -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.mrb -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.php -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.pike -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.pl -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.py -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.rb -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.sc -------------------------------------------------------------------------------- /Interpreted/ackermann-function/ack.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/ackermann-function/ack.tcl -------------------------------------------------------------------------------- /Interpreted/ackermann-function/args.txt: -------------------------------------------------------------------------------- 1 | 3 9 2 | -------------------------------------------------------------------------------- /Interpreted/coin-sums/args.txt: -------------------------------------------------------------------------------- 1 | 0 250 2 | -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.awk -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.cr -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.gvy -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.jl -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.lua -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.php -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.pike -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.pl -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.py -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.rb -------------------------------------------------------------------------------- /Interpreted/coin-sums/csum.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/coin-sums/csum.sc -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/args.txt: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.awk -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.clj -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.cr -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.exs -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.gvy -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.jl -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.lua -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.ml -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.mrb -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.php -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.pike -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.pl -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.py -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.rb -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.sc -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/fib.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/fibonacci-recursive/fib.tcl -------------------------------------------------------------------------------- /Interpreted/fibonacci-recursive/ignore.txt: -------------------------------------------------------------------------------- 1 | fib.tcl 2 | -------------------------------------------------------------------------------- /Interpreted/interpreters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/interpreters.txt -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/args.txt -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.awk -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.clj -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.cr -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.gvy -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.jl -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.lua -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.php -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.pike -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.pl -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.py -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.rb -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.sc -------------------------------------------------------------------------------- /Interpreted/lcs-recursive/lcs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lcs-recursive/lcs.tcl -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/args.txt: -------------------------------------------------------------------------------- 1 | rosettacode raisethysword 2 | -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.awk -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.clj -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.cr -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.exs -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.gvy -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.jl -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.lua -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.ml -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.mrb -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.php -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.pike -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.pl -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.py -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.rb -------------------------------------------------------------------------------- /Interpreted/lev-distance-recursive/lev.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/lev-distance-recursive/lev.sc -------------------------------------------------------------------------------- /Interpreted/man-or-boy/args.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.clj -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.cr -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.gvy -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.jl -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.lua -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.ml -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.mrb -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.php -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.pl -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.pl6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.pl6 -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.py -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.rb -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.sc -------------------------------------------------------------------------------- /Interpreted/man-or-boy/mob.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/man-or-boy/mob.tcl -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/args.txt: -------------------------------------------------------------------------------- 1 | 130 2 | -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.awk -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.clj -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.cr -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.exs -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.gvy -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.jl -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.lua -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.ml -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.mrb -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.php -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.pike -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.pl -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.py -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.rb -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.sc -------------------------------------------------------------------------------- /Interpreted/mutual-recursion/mrec.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/mutual-recursion/mrec.tcl -------------------------------------------------------------------------------- /Interpreted/tak-function/args.txt: -------------------------------------------------------------------------------- 1 | 30 22 12 2 | -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.awk -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.clj -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.cr -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.exs -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.gvy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.gvy -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.jl -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.lua -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.ml -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.mrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.mrb -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.php -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.pike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.pike -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.pl -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.py -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.rb -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.sc -------------------------------------------------------------------------------- /Interpreted/tak-function/tak.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Interpreted/tak-function/tak.tcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /Reports/Compiled/array-reverse 1000000 1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Compiled/array-reverse 1000000 1000.csv -------------------------------------------------------------------------------- /Reports/Compiled/fibonacci-recursive 40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Compiled/fibonacci-recursive 40.csv -------------------------------------------------------------------------------- /Reports/Compiled/man-or-boy 15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Compiled/man-or-boy 15.csv -------------------------------------------------------------------------------- /Reports/Compiled/man-or-boy 16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Compiled/man-or-boy 16.csv -------------------------------------------------------------------------------- /Reports/Compiled/man-or-boy 20.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Compiled/man-or-boy 20.csv -------------------------------------------------------------------------------- /Reports/Interpreted/ackermann-function 3 9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/ackermann-function 3 9.csv -------------------------------------------------------------------------------- /Reports/Interpreted/coin-sums 0 250.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/coin-sums 0 250.csv -------------------------------------------------------------------------------- /Reports/Interpreted/fibonacci-recursive 35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/fibonacci-recursive 35.csv -------------------------------------------------------------------------------- /Reports/Interpreted/lcs-recursive thisisatest testing123testingtrizen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/lcs-recursive thisisatest testing123testingtrizen.csv -------------------------------------------------------------------------------- /Reports/Interpreted/lev-distance-recursive rosettacode raisethysword.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/lev-distance-recursive rosettacode raisethysword.csv -------------------------------------------------------------------------------- /Reports/Interpreted/man-or-boy 12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/man-or-boy 12.csv -------------------------------------------------------------------------------- /Reports/Interpreted/mutual-recursion 130.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/mutual-recursion 130.csv -------------------------------------------------------------------------------- /Reports/Interpreted/tak-function 30 22 12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/Interpreted/tak-function 30 22 12.csv -------------------------------------------------------------------------------- /Reports/create_final_report.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/create_final_report.pl -------------------------------------------------------------------------------- /Reports/overview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Reports/overview.csv -------------------------------------------------------------------------------- /Stats/Interpreted/ack-function-3-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/ack-function-3-9.png -------------------------------------------------------------------------------- /Stats/Interpreted/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/all.png -------------------------------------------------------------------------------- /Stats/Interpreted/coin-sums-0-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/coin-sums-0-250.png -------------------------------------------------------------------------------- /Stats/Interpreted/fibonacci-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/fibonacci-35.png -------------------------------------------------------------------------------- /Stats/Interpreted/lcs-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/lcs-test.png -------------------------------------------------------------------------------- /Stats/Interpreted/lev-distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/lev-distance.png -------------------------------------------------------------------------------- /Stats/Interpreted/man-or-boy-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/man-or-boy-12.png -------------------------------------------------------------------------------- /Stats/Interpreted/mutual-recursion-130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/mutual-recursion-130.png -------------------------------------------------------------------------------- /Stats/Interpreted/tak-30-22-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/Stats/Interpreted/tak-30-22-12.png -------------------------------------------------------------------------------- /benchmark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/benchmark.pl -------------------------------------------------------------------------------- /update_names.sf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trizen/language-benchmarks/HEAD/update_names.sf --------------------------------------------------------------------------------