├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── .markdownlint-cli2.jsonc ├── .nvmrc ├── LICENSE.md ├── README.md ├── book.toml ├── package.json └── src ├── README.md ├── SUMMARY.md ├── basics-of-bend.md ├── misc └── contributors.md └── setting-up-your-environment.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | node_modules 3 | .history 4 | -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.16.0 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/book.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/basics-of-bend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/src/basics-of-bend.md -------------------------------------------------------------------------------- /src/misc/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/src/misc/contributors.md -------------------------------------------------------------------------------- /src/setting-up-your-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekyayush/bend-lang/HEAD/src/setting-up-your-environment.md --------------------------------------------------------------------------------