https://github.com/oluceps/nix-ascii2char
ASCII code to char (string) for nix
https://github.com/oluceps/nix-ascii2char
Last synced: 8 months ago
JSON representation
ASCII code to char (string) for nix
- Host: GitHub
- URL: https://github.com/oluceps/nix-ascii2char
- Owner: oluceps
- License: mit
- Created: 2024-09-03T15:52:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T15:52:56.000Z (almost 2 years ago)
- Last Synced: 2025-03-20T12:18:19.578Z (about 1 year ago)
- Language: Nix
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASCII code to char (string) for nix
usage:
```
nix-repl> :lf .
Added 11 variables.
nix-repl> decToBin 2
"00000010"
nix-repl> map asciiToChar [ 78 73 88 ]
[
"N"
"I"
"X"
]
```