samoht / ocaml-hex

Hexadecimal converter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ocaml-hex

Build Status docs

Minimal library providing hexadecimal converters.

#require "hex";;
# Hex.of_string "Hello world!";;
- : Hex.t = "48656c6c6f20776f726c6421"
# Hex.to_string "dead-beef";;
- : string = "ޭ��"
# Hex.hexdump (Hex.of_string "Hello world!\n")
00000000: 4865 6c6c 6f20 776f 726c 6421 0a        Hello world!.
- : unit = ()

About

Hexadecimal converter


Languages

Language:OCaml 99.2%Language:Makefile 0.7%Language:Shell 0.1%