https://github.com/shnarazk/learn-bqn
配列指向プログラミング言語BQN の始め方(日本語版) -- Learn and write an introduction of BQN, an APL descendant (in Japanese)
https://github.com/shnarazk/learn-bqn
bqn japanese learning-by-doing tutorial
Last synced: 7 months ago
JSON representation
配列指向プログラミング言語BQN の始め方(日本語版) -- Learn and write an introduction of BQN, an APL descendant (in Japanese)
- Host: GitHub
- URL: https://github.com/shnarazk/learn-bqn
- Owner: shnarazk
- License: cc0-1.0
- Created: 2022-04-13T23:11:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-27T23:05:37.000Z (about 2 years ago)
- Last Synced: 2025-01-25T18:11:33.699Z (9 months ago)
- Topics: bqn, japanese, learning-by-doing, tutorial
- Language: APL
- Homepage: https://shnarazk.github.io/learn-bqn/
- Size: 2.35 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

## My setup scheme of [CBQN](https://github.com/dzaima/CBQN) with Nix
- a crash course to install CBQN devel on Darnwin (checked at 2023-08-22)
```
nix shell nixpkgs#libffi^dev; export C_INCLUDE_PATH=/nix/store/*libffi-*-dev/include
# or flakify with `pkgs.libffi`
make o3n has='AVX2 BMI2' # or make o3 on aarch64
cp BQN ~/.local/bin
make shared-o3
mkdir -p ~/.local/lib
cp libcbqn.so ~/.local/lib
cp libcbqn.so ~/.local/lib/BQN
ln -sf ~/.local/bin/BQN ~/.local/bin/cbqn
```- [bqnlsp](https://github.com/shnarazk/learn-bqn/blob/main/bqnlsp.md)
- [tree-sitter-bqn](https://github.com/shnarazk/tree-sitter-bqn)
- [editorial configuration](https://github.com/shnarazk/learn-bqn/blob/main/settings/helix.md) for [helix](https://helix-editor.com)## How to code
- [BQN documentation](https://mlochbaum.github.io/BQN/)
- [cbqn commands](https://github.com/dzaima/CBQN/blob/master/docs/commands.md)
- [BQNcrate](https://mlochbaum.github.io/bqncrate/)
- [my code for advent of code](https://github.com/shnarazk/advent-of-code/tree/main/bqn)
- [pi benchmark game](https://github.com/shnarazk/learn-bqn/tree/main/programs/pi-benchmark)