From c9e8dff919c49a13bff601e78cc1e78a7cc8f506 Mon Sep 17 00:00:00 2001 From: Akshay Date: Sun, 8 Aug 2021 17:38:33 +0530 Subject: dump --- src/options.ml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/options.ml (limited to 'src/options.ml') diff --git a/src/options.ml b/src/options.ml new file mode 100644 index 0000000..a57c28b --- /dev/null +++ b/src/options.ml @@ -0,0 +1,8 @@ +type t = { height: int; ascii: bool; marker: Marker.t} +let default = + { height = 14 + ; ascii = false + ; marker = Marker.Point + } +let with_height v c = { c with height = v; } +let with_marker v c = { c with marker = v; } -- cgit v1.2.3