Construct a Result with an error value of E.
E
const systemWorking: Result<string, string> = Err("System down!"); Copy
const systemWorking: Result<string, string> = Err("System down!");
Construct a Result with an error value of
E
.