├── Args.hs ├── Compile.hs ├── Expr.hs ├── FileQuoter.hs ├── Header.hs ├── Hs.hs ├── LICENSE.txt ├── Ops.hs ├── OpsHelper.hs ├── Parse.hs ├── ParseArgs.hs ├── Polylib.hs ├── README.md ├── SmartList.hs ├── Types.hs ├── docs ├── README.md ├── downloads.md ├── index.md ├── stats.md ├── todo.txt ├── try_it.md ├── tutorial_ancillary.md ├── tutorial_basics.md ├── tutorial_minutiae.md ├── tutorial_tour.md └── why.md ├── nibbles.hs ├── stats └── shinh │ ├── usage │ ├── atoms.rb │ ├── combos.rb │ ├── getter.rb │ └── ops.rb │ └── versus │ ├── dl_problems.rb │ ├── get_links.rb │ └── score_all.rb ├── test ├── AdditionalTests.hs ├── arg_io_integration_test.rb ├── input_integration_test.rb ├── integration_test.rb ├── litonly_integration_test.rb ├── parse_speed_test.rb ├── raw_arg_integration_test.rb ├── simple_integration_test.rb ├── test.hs ├── testall.rb └── utf8_integration_test.rb └── web ├── generate_site.rb ├── quickref.hs └── site ├── quickref.css ├── sorttable.js └── style.css /Args.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Args.hs -------------------------------------------------------------------------------- /Compile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Compile.hs -------------------------------------------------------------------------------- /Expr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Expr.hs -------------------------------------------------------------------------------- /FileQuoter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/FileQuoter.hs -------------------------------------------------------------------------------- /Header.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Header.hs -------------------------------------------------------------------------------- /Hs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Hs.hs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Ops.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Ops.hs -------------------------------------------------------------------------------- /OpsHelper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/OpsHelper.hs -------------------------------------------------------------------------------- /Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Parse.hs -------------------------------------------------------------------------------- /ParseArgs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/ParseArgs.hs -------------------------------------------------------------------------------- /Polylib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Polylib.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/README.md -------------------------------------------------------------------------------- /SmartList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/SmartList.hs -------------------------------------------------------------------------------- /Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/Types.hs -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/downloads.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/stats.md -------------------------------------------------------------------------------- /docs/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/todo.txt -------------------------------------------------------------------------------- /docs/try_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/try_it.md -------------------------------------------------------------------------------- /docs/tutorial_ancillary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/tutorial_ancillary.md -------------------------------------------------------------------------------- /docs/tutorial_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/tutorial_basics.md -------------------------------------------------------------------------------- /docs/tutorial_minutiae.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/tutorial_minutiae.md -------------------------------------------------------------------------------- /docs/tutorial_tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/tutorial_tour.md -------------------------------------------------------------------------------- /docs/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/docs/why.md -------------------------------------------------------------------------------- /nibbles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/nibbles.hs -------------------------------------------------------------------------------- /stats/shinh/usage/atoms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/usage/atoms.rb -------------------------------------------------------------------------------- /stats/shinh/usage/combos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/usage/combos.rb -------------------------------------------------------------------------------- /stats/shinh/usage/getter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/usage/getter.rb -------------------------------------------------------------------------------- /stats/shinh/usage/ops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/usage/ops.rb -------------------------------------------------------------------------------- /stats/shinh/versus/dl_problems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/versus/dl_problems.rb -------------------------------------------------------------------------------- /stats/shinh/versus/get_links.rb: -------------------------------------------------------------------------------- 1 | http://golf.shinh.org/all.rb -------------------------------------------------------------------------------- /stats/shinh/versus/score_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/stats/shinh/versus/score_all.rb -------------------------------------------------------------------------------- /test/AdditionalTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/AdditionalTests.hs -------------------------------------------------------------------------------- /test/arg_io_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/arg_io_integration_test.rb -------------------------------------------------------------------------------- /test/input_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/input_integration_test.rb -------------------------------------------------------------------------------- /test/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/integration_test.rb -------------------------------------------------------------------------------- /test/litonly_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/litonly_integration_test.rb -------------------------------------------------------------------------------- /test/parse_speed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/parse_speed_test.rb -------------------------------------------------------------------------------- /test/raw_arg_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/raw_arg_integration_test.rb -------------------------------------------------------------------------------- /test/simple_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/simple_integration_test.rb -------------------------------------------------------------------------------- /test/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/test.hs -------------------------------------------------------------------------------- /test/testall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/testall.rb -------------------------------------------------------------------------------- /test/utf8_integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/test/utf8_integration_test.rb -------------------------------------------------------------------------------- /web/generate_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/web/generate_site.rb -------------------------------------------------------------------------------- /web/quickref.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/web/quickref.hs -------------------------------------------------------------------------------- /web/site/quickref.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/web/site/quickref.css -------------------------------------------------------------------------------- /web/site/sorttable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/web/site/sorttable.js -------------------------------------------------------------------------------- /web/site/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenks/nibbles/HEAD/web/site/style.css --------------------------------------------------------------------------------