This is my own version of Option. Definition:
pub enum Probably<T> {
Nothing,
Something(T),
}
The point is that you can use [Probably] as the return type of your main function.
Exit code is 0
if it is [Something], 1
if [Nothing].
It's probably nothing.