module Misc:sig..end
Misc contains miscellaneous utility functions.
val string_of_char : char -> stringstring_of_char c is the string containing the character c.
val char_of_string : string -> charchar_of_string s is the sole character in s if s has length one;
raises Failure "char_of_string" otherwise.