An open API service indexing awesome lists of open source software.

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

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"
]
```