This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
15
unikernel/duniverse/ocaml-hex/README.md
Normal file
15
unikernel/duniverse/ocaml-hex/README.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
### ocaml-hex -- a minimal library providing hexadecimal converters
|
||||
|
||||
[](https://travis-ci.org/mirage/ocaml-hex)
|
||||
[](http://docs.mirage.io/hex/)
|
||||
|
||||
```ocaml
|
||||
# #require "hex";;
|
||||
# Hex.of_string "Hello world!";;
|
||||
- : Hex.t = `Hex "48656c6c6f20776f726c6421"
|
||||
# Hex.to_string (`Hex "deadbeef");;
|
||||
- : string = "Þ¾ï"
|
||||
# Hex.hexdump (Hex.of_string "Hello world!\n")
|
||||
00000000: 4865 6c6c 6f20 776f 726c 6421 0a Hello world!.
|
||||
- : unit = ()
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue