├── .gitignore ├── CODE_OF_CONDUCT.md ├── GOVERNANCE.md ├── LICENSE.md ├── README.md ├── _config.yml ├── _data ├── contrib.yml ├── glossary.yml ├── order.yml ├── references.yml └── topic.yml ├── _includes ├── app_r.html ├── chp_r.html ├── figure.html ├── foot.html ├── glossary.html ├── gls_r.html ├── head.html ├── people.html ├── ref_r.html ├── references.html ├── rootfile.html ├── table.html ├── title.html ├── toc.html └── toc_entry.html ├── _layouts └── default.html ├── backup └── index.md ├── binary ├── SimpleEncoding.roc ├── binary.roc └── index.md ├── bw.css ├── ci ├── code │ ├── Ci.roc │ ├── Example.roc │ ├── Job.roc │ ├── Runner │ │ ├── GithubActions.roc │ │ └── Local.roc │ └── main.roc └── index.md ├── completion └── index.md ├── compress └── index.md ├── conduct_.md ├── des ├── PrioQueue.roc ├── Queue.roc ├── index.md └── main.roc ├── diff ├── Makefile ├── TODO.md ├── examples │ ├── Hello.roc │ ├── HelloWorld.roc │ ├── source.txt │ └── target.txt ├── index.md ├── outline.md └── src │ ├── Lcs.roc │ └── main.roc ├── docs ├── backup │ └── index.html ├── binary │ ├── SimpleEncoding.roc │ ├── binary.roc │ └── index.html ├── bw.css ├── ci │ ├── code │ │ ├── Ci.roc │ │ ├── Example.roc │ │ ├── Job.roc │ │ ├── Runner │ │ │ ├── GithubActions.roc │ │ │ └── Local.roc │ │ └── main.roc │ └── index.html ├── completion │ └── index.html ├── compress │ └── index.html ├── conduct │ └── index.html ├── des │ ├── PrioQueue.roc │ ├── Queue.roc │ ├── index.html │ └── main.roc ├── diff │ ├── Makefile │ ├── TODO.md │ ├── examples │ │ ├── Hello.roc │ │ ├── HelloWorld.roc │ │ ├── source.txt │ │ └── target.txt │ ├── index.html │ ├── outline.md │ └── src │ │ ├── Lcs.roc │ │ └── main.roc ├── editor │ └── index.html ├── favicon.svg ├── finale │ └── index.html ├── ftp │ └── index.html ├── gallery │ └── index.html ├── glossary │ └── index.html ├── governance │ └── index.html ├── index.html ├── intro │ └── index.html ├── json │ └── index.html ├── license │ └── index.html ├── logger │ ├── index.html │ └── iterations │ │ ├── 0-minimal-logger │ │ └── main.roc │ │ └── 1-append-to-file │ │ ├── main.roc │ │ └── main.sweet.roc ├── match │ ├── EndOfString.roc │ ├── Literals.roc │ ├── Repetitions.roc │ ├── StartOfString.roc │ ├── Wildcard.roc │ ├── index.html │ └── main.roc ├── misc │ ├── slides-2024-03-07.md │ └── slides-2024-03-07.pdf ├── parser │ ├── Html.roc │ ├── Parser.roc │ └── index.html ├── pretty │ └── index.html ├── prng │ ├── PCG.roc │ ├── PRNG.roc │ ├── RANDU.roc │ ├── RandomTools.roc │ ├── TestGenerators.roc │ ├── bibliography.md │ ├── generatePointsRANDU.roc │ └── index.html ├── proptest │ └── index.html ├── redirects.json ├── redis │ └── index.html ├── references │ └── index.html ├── robots.txt ├── site.css ├── sitemap.xml ├── svg │ └── index.html └── template │ ├── CodeGen.roc │ ├── Parser.roc │ ├── README.md │ ├── examples │ ├── basePage │ │ ├── Pages.roc │ │ ├── README.md │ │ ├── base.rtl │ │ ├── first.rtl │ │ ├── second.rtl │ │ └── server.roc │ └── blog │ │ ├── Pages.roc │ │ ├── blogPost.rtl │ │ ├── home.rtl │ │ └── server.roc │ ├── index.html │ └── rtl.roc ├── editor └── index.md ├── favicon.svg ├── finale └── index.md ├── ftp └── index.md ├── gallery └── index.md ├── glossary └── index.md ├── governance_.md ├── index.md ├── intro └── index.md ├── json └── index.md ├── license_.md ├── logger ├── index.md └── iterations │ ├── 0-minimal-logger │ └── main.roc │ └── 1-append-to-file │ ├── main.roc │ └── main.sweet.roc ├── match ├── EndOfString.roc ├── Literals.roc ├── Repetitions.roc ├── StartOfString.roc ├── Wildcard.roc ├── index.md └── main.roc ├── misc ├── slides-2024-03-07.md └── slides-2024-03-07.pdf ├── parser ├── Html.roc ├── Parser.roc └── index.md ├── pretty └── index.md ├── prng ├── .gitignore ├── PCG.roc ├── PRNG.roc ├── RANDU.roc ├── RandomTools.roc ├── TestGenerators.roc ├── bibliography.md ├── generatePointsRANDU.roc └── index.md ├── proptest └── index.md ├── redis └── index.md ├── references └── index.md ├── site.css ├── svg └── index.md └── template ├── CodeGen.roc ├── Parser.roc ├── README.md ├── examples ├── basePage │ ├── Pages.roc │ ├── README.md │ ├── base.rtl │ ├── first.rtl │ ├── second.rtl │ └── server.roc └── blog │ ├── Pages.roc │ ├── blogPost.rtl │ ├── home.rtl │ └── server.roc ├── index.md └── rtl.roc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_data/contrib.yml -------------------------------------------------------------------------------- /_data/glossary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_data/glossary.yml -------------------------------------------------------------------------------- /_data/order.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_data/order.yml -------------------------------------------------------------------------------- /_data/references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_data/references.yml -------------------------------------------------------------------------------- /_data/topic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_data/topic.yml -------------------------------------------------------------------------------- /_includes/app_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/app_r.html -------------------------------------------------------------------------------- /_includes/chp_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/chp_r.html -------------------------------------------------------------------------------- /_includes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/figure.html -------------------------------------------------------------------------------- /_includes/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/foot.html -------------------------------------------------------------------------------- /_includes/glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/glossary.html -------------------------------------------------------------------------------- /_includes/gls_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/gls_r.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/people.html -------------------------------------------------------------------------------- /_includes/ref_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/ref_r.html -------------------------------------------------------------------------------- /_includes/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/references.html -------------------------------------------------------------------------------- /_includes/rootfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/rootfile.html -------------------------------------------------------------------------------- /_includes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/table.html -------------------------------------------------------------------------------- /_includes/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/title.html -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/toc.html -------------------------------------------------------------------------------- /_includes/toc_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_includes/toc_entry.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /backup/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /binary/SimpleEncoding.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/binary/SimpleEncoding.roc -------------------------------------------------------------------------------- /binary/binary.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/binary/binary.roc -------------------------------------------------------------------------------- /binary/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/binary/index.md -------------------------------------------------------------------------------- /bw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/bw.css -------------------------------------------------------------------------------- /ci/code/Ci.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/Ci.roc -------------------------------------------------------------------------------- /ci/code/Example.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/Example.roc -------------------------------------------------------------------------------- /ci/code/Job.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/Job.roc -------------------------------------------------------------------------------- /ci/code/Runner/GithubActions.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/Runner/GithubActions.roc -------------------------------------------------------------------------------- /ci/code/Runner/Local.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/Runner/Local.roc -------------------------------------------------------------------------------- /ci/code/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/code/main.roc -------------------------------------------------------------------------------- /ci/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/ci/index.md -------------------------------------------------------------------------------- /completion/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/completion/index.md -------------------------------------------------------------------------------- /compress/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/compress/index.md -------------------------------------------------------------------------------- /conduct_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/conduct_.md -------------------------------------------------------------------------------- /des/PrioQueue.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/des/PrioQueue.roc -------------------------------------------------------------------------------- /des/Queue.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/des/Queue.roc -------------------------------------------------------------------------------- /des/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/des/index.md -------------------------------------------------------------------------------- /des/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/des/main.roc -------------------------------------------------------------------------------- /diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/Makefile -------------------------------------------------------------------------------- /diff/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/TODO.md -------------------------------------------------------------------------------- /diff/examples/Hello.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/examples/Hello.roc -------------------------------------------------------------------------------- /diff/examples/HelloWorld.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/examples/HelloWorld.roc -------------------------------------------------------------------------------- /diff/examples/source.txt: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | C 4 | D 5 | E 6 | F 7 | G 8 | H 9 | -------------------------------------------------------------------------------- /diff/examples/target.txt: -------------------------------------------------------------------------------- 1 | I 2 | B 3 | C 4 | D 5 | E 6 | F 7 | J 8 | H 9 | -------------------------------------------------------------------------------- /diff/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/index.md -------------------------------------------------------------------------------- /diff/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/outline.md -------------------------------------------------------------------------------- /diff/src/Lcs.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/src/Lcs.roc -------------------------------------------------------------------------------- /diff/src/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/diff/src/main.roc -------------------------------------------------------------------------------- /docs/backup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/backup/index.html -------------------------------------------------------------------------------- /docs/binary/SimpleEncoding.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/binary/SimpleEncoding.roc -------------------------------------------------------------------------------- /docs/binary/binary.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/binary/binary.roc -------------------------------------------------------------------------------- /docs/binary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/binary/index.html -------------------------------------------------------------------------------- /docs/bw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/bw.css -------------------------------------------------------------------------------- /docs/ci/code/Ci.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/Ci.roc -------------------------------------------------------------------------------- /docs/ci/code/Example.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/Example.roc -------------------------------------------------------------------------------- /docs/ci/code/Job.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/Job.roc -------------------------------------------------------------------------------- /docs/ci/code/Runner/GithubActions.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/Runner/GithubActions.roc -------------------------------------------------------------------------------- /docs/ci/code/Runner/Local.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/Runner/Local.roc -------------------------------------------------------------------------------- /docs/ci/code/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/code/main.roc -------------------------------------------------------------------------------- /docs/ci/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ci/index.html -------------------------------------------------------------------------------- /docs/completion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/completion/index.html -------------------------------------------------------------------------------- /docs/compress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/compress/index.html -------------------------------------------------------------------------------- /docs/conduct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/conduct/index.html -------------------------------------------------------------------------------- /docs/des/PrioQueue.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/des/PrioQueue.roc -------------------------------------------------------------------------------- /docs/des/Queue.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/des/Queue.roc -------------------------------------------------------------------------------- /docs/des/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/des/index.html -------------------------------------------------------------------------------- /docs/des/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/des/main.roc -------------------------------------------------------------------------------- /docs/diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/Makefile -------------------------------------------------------------------------------- /docs/diff/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/TODO.md -------------------------------------------------------------------------------- /docs/diff/examples/Hello.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/examples/Hello.roc -------------------------------------------------------------------------------- /docs/diff/examples/HelloWorld.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/examples/HelloWorld.roc -------------------------------------------------------------------------------- /docs/diff/examples/source.txt: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | C 4 | D 5 | E 6 | F 7 | G 8 | H 9 | -------------------------------------------------------------------------------- /docs/diff/examples/target.txt: -------------------------------------------------------------------------------- 1 | I 2 | B 3 | C 4 | D 5 | E 6 | F 7 | J 8 | H 9 | -------------------------------------------------------------------------------- /docs/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/index.html -------------------------------------------------------------------------------- /docs/diff/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/outline.md -------------------------------------------------------------------------------- /docs/diff/src/Lcs.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/src/Lcs.roc -------------------------------------------------------------------------------- /docs/diff/src/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/diff/src/main.roc -------------------------------------------------------------------------------- /docs/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/editor/index.html -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/finale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/finale/index.html -------------------------------------------------------------------------------- /docs/ftp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/ftp/index.html -------------------------------------------------------------------------------- /docs/gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/gallery/index.html -------------------------------------------------------------------------------- /docs/glossary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/glossary/index.html -------------------------------------------------------------------------------- /docs/governance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/governance/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/intro/index.html -------------------------------------------------------------------------------- /docs/json/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/json/index.html -------------------------------------------------------------------------------- /docs/license/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/license/index.html -------------------------------------------------------------------------------- /docs/logger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/logger/index.html -------------------------------------------------------------------------------- /docs/logger/iterations/0-minimal-logger/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/logger/iterations/0-minimal-logger/main.roc -------------------------------------------------------------------------------- /docs/logger/iterations/1-append-to-file/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/logger/iterations/1-append-to-file/main.roc -------------------------------------------------------------------------------- /docs/logger/iterations/1-append-to-file/main.sweet.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/logger/iterations/1-append-to-file/main.sweet.roc -------------------------------------------------------------------------------- /docs/match/EndOfString.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/EndOfString.roc -------------------------------------------------------------------------------- /docs/match/Literals.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/Literals.roc -------------------------------------------------------------------------------- /docs/match/Repetitions.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/Repetitions.roc -------------------------------------------------------------------------------- /docs/match/StartOfString.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/StartOfString.roc -------------------------------------------------------------------------------- /docs/match/Wildcard.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/Wildcard.roc -------------------------------------------------------------------------------- /docs/match/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/index.html -------------------------------------------------------------------------------- /docs/match/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/match/main.roc -------------------------------------------------------------------------------- /docs/misc/slides-2024-03-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/misc/slides-2024-03-07.md -------------------------------------------------------------------------------- /docs/misc/slides-2024-03-07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/misc/slides-2024-03-07.pdf -------------------------------------------------------------------------------- /docs/parser/Html.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/parser/Html.roc -------------------------------------------------------------------------------- /docs/parser/Parser.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/parser/Parser.roc -------------------------------------------------------------------------------- /docs/parser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/parser/index.html -------------------------------------------------------------------------------- /docs/pretty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/pretty/index.html -------------------------------------------------------------------------------- /docs/prng/PCG.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/PCG.roc -------------------------------------------------------------------------------- /docs/prng/PRNG.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/PRNG.roc -------------------------------------------------------------------------------- /docs/prng/RANDU.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/RANDU.roc -------------------------------------------------------------------------------- /docs/prng/RandomTools.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/RandomTools.roc -------------------------------------------------------------------------------- /docs/prng/TestGenerators.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/TestGenerators.roc -------------------------------------------------------------------------------- /docs/prng/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/bibliography.md -------------------------------------------------------------------------------- /docs/prng/generatePointsRANDU.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/generatePointsRANDU.roc -------------------------------------------------------------------------------- /docs/prng/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/prng/index.html -------------------------------------------------------------------------------- /docs/proptest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/proptest/index.html -------------------------------------------------------------------------------- /docs/redirects.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docs/redis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/redis/index.html -------------------------------------------------------------------------------- /docs/references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/references/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/site.css -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/svg/index.html -------------------------------------------------------------------------------- /docs/template/CodeGen.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/CodeGen.roc -------------------------------------------------------------------------------- /docs/template/Parser.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/Parser.roc -------------------------------------------------------------------------------- /docs/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/README.md -------------------------------------------------------------------------------- /docs/template/examples/basePage/Pages.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/Pages.roc -------------------------------------------------------------------------------- /docs/template/examples/basePage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/README.md -------------------------------------------------------------------------------- /docs/template/examples/basePage/base.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/base.rtl -------------------------------------------------------------------------------- /docs/template/examples/basePage/first.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/first.rtl -------------------------------------------------------------------------------- /docs/template/examples/basePage/second.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/second.rtl -------------------------------------------------------------------------------- /docs/template/examples/basePage/server.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/basePage/server.roc -------------------------------------------------------------------------------- /docs/template/examples/blog/Pages.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/blog/Pages.roc -------------------------------------------------------------------------------- /docs/template/examples/blog/blogPost.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/blog/blogPost.rtl -------------------------------------------------------------------------------- /docs/template/examples/blog/home.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/blog/home.rtl -------------------------------------------------------------------------------- /docs/template/examples/blog/server.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/examples/blog/server.roc -------------------------------------------------------------------------------- /docs/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/index.html -------------------------------------------------------------------------------- /docs/template/rtl.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/docs/template/rtl.roc -------------------------------------------------------------------------------- /editor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/editor/index.md -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/favicon.svg -------------------------------------------------------------------------------- /finale/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/finale/index.md -------------------------------------------------------------------------------- /ftp/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /gallery/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /glossary/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | {% include glossary.html %} 5 | -------------------------------------------------------------------------------- /governance_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/governance_.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/index.md -------------------------------------------------------------------------------- /intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/intro/index.md -------------------------------------------------------------------------------- /json/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/json/index.md -------------------------------------------------------------------------------- /license_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/license_.md -------------------------------------------------------------------------------- /logger/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/logger/index.md -------------------------------------------------------------------------------- /logger/iterations/0-minimal-logger/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/logger/iterations/0-minimal-logger/main.roc -------------------------------------------------------------------------------- /logger/iterations/1-append-to-file/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/logger/iterations/1-append-to-file/main.roc -------------------------------------------------------------------------------- /logger/iterations/1-append-to-file/main.sweet.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/logger/iterations/1-append-to-file/main.sweet.roc -------------------------------------------------------------------------------- /match/EndOfString.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/EndOfString.roc -------------------------------------------------------------------------------- /match/Literals.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/Literals.roc -------------------------------------------------------------------------------- /match/Repetitions.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/Repetitions.roc -------------------------------------------------------------------------------- /match/StartOfString.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/StartOfString.roc -------------------------------------------------------------------------------- /match/Wildcard.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/Wildcard.roc -------------------------------------------------------------------------------- /match/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/index.md -------------------------------------------------------------------------------- /match/main.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/match/main.roc -------------------------------------------------------------------------------- /misc/slides-2024-03-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/misc/slides-2024-03-07.md -------------------------------------------------------------------------------- /misc/slides-2024-03-07.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/misc/slides-2024-03-07.pdf -------------------------------------------------------------------------------- /parser/Html.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/parser/Html.roc -------------------------------------------------------------------------------- /parser/Parser.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/parser/Parser.roc -------------------------------------------------------------------------------- /parser/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /pretty/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /prng/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv -------------------------------------------------------------------------------- /prng/PCG.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/PCG.roc -------------------------------------------------------------------------------- /prng/PRNG.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/PRNG.roc -------------------------------------------------------------------------------- /prng/RANDU.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/RANDU.roc -------------------------------------------------------------------------------- /prng/RandomTools.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/RandomTools.roc -------------------------------------------------------------------------------- /prng/TestGenerators.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/TestGenerators.roc -------------------------------------------------------------------------------- /prng/bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/bibliography.md -------------------------------------------------------------------------------- /prng/generatePointsRANDU.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/generatePointsRANDU.roc -------------------------------------------------------------------------------- /prng/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/prng/index.md -------------------------------------------------------------------------------- /proptest/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /redis/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /references/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | {% include references.html %} 5 | -------------------------------------------------------------------------------- /site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/site.css -------------------------------------------------------------------------------- /svg/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/svg/index.md -------------------------------------------------------------------------------- /template/CodeGen.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/CodeGen.roc -------------------------------------------------------------------------------- /template/Parser.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/Parser.roc -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/README.md -------------------------------------------------------------------------------- /template/examples/basePage/Pages.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/Pages.roc -------------------------------------------------------------------------------- /template/examples/basePage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/README.md -------------------------------------------------------------------------------- /template/examples/basePage/base.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/base.rtl -------------------------------------------------------------------------------- /template/examples/basePage/first.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/first.rtl -------------------------------------------------------------------------------- /template/examples/basePage/second.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/second.rtl -------------------------------------------------------------------------------- /template/examples/basePage/server.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/basePage/server.roc -------------------------------------------------------------------------------- /template/examples/blog/Pages.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/blog/Pages.roc -------------------------------------------------------------------------------- /template/examples/blog/blogPost.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/blog/blogPost.rtl -------------------------------------------------------------------------------- /template/examples/blog/home.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/blog/home.rtl -------------------------------------------------------------------------------- /template/examples/blog/server.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/examples/blog/server.roc -------------------------------------------------------------------------------- /template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/index.md -------------------------------------------------------------------------------- /template/rtl.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roc-lang/book-of-examples/HEAD/template/rtl.roc --------------------------------------------------------------------------------