Kitty Graphics Protocol in OCaml
terminal graphics ocaml
at main 367 B view raw
1(*--------------------------------------------------------------------------- 2 Copyright (c) 2025 Anil Madhavapeddy. All rights reserved. 3 SPDX-License-Identifier: ISC 4 ---------------------------------------------------------------------------*) 5 6type t = [ `Rgba32 | `Rgb24 | `Png ] 7 8let to_int : t -> int = function `Rgba32 -> 32 | `Rgb24 -> 24 | `Png -> 100