/*
min + max cli programs
implementation by Radim Kolar <hsn@sendmail.cz> 2026
https://gitlab.com/hsn10/minmax-cli
This is free and unencumbered software released into the public domain.
SPDX-License-Identifier: Unlicense OR CC0-1.0
For more information, please refer to <http://unlicense.org/>
or <https://creativecommons.org/publicdomain/zero/1.0/>
*/
use Ordering;
const NAME: &str = "max";
const ACTION: &str = "maximum";
pub const
include!;