How to Install and Uninstall ocaml-easy-format Package on openSUSE Leap

Last updated: May 14,2024

1. Install "ocaml-easy-format" package

Here is a brief guide to show you how to install ocaml-easy-format on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install ocaml-easy-format

2. Uninstall "ocaml-easy-format" package

Please follow the steps below to uninstall ocaml-easy-format on openSUSE Leap:

$ sudo zypper remove ocaml-easy-format

3. Information about the ocaml-easy-format package on openSUSE Leap

Information for package ocaml-easy-format:
------------------------------------------
Repository : Main Repository
Name : ocaml-easy-format
Version : 1.2.0-2.38
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 58.7 KiB
Installed : No
Status : not installed
Source package : ocaml-easy-format-1.2.0-2.38.src
Upstream URL : https://github.com/mjambon/easy-format
Summary : Data pretty printing made easy
Description :
This module offers a high-level and functional interface to the Format module
of the OCaml standard library. It is a pretty-printing facility, i.e. it takes
as input some code represented as a tree and formats this code into the most
visually satisfying result, breaking and indenting lines of code where
appropriate.
Input data must be first modelled and converted into a tree using 3 kinds of
nodes:
atoms lists labelled nodes
Atoms represent any text that is guaranteed to be printed as-is. Lists can
model any sequence of items such as arrays of data or lists of definitions that
are labelled with something like "int main", "let x =" or "x:".