Construct a Result with a success value of A.
A
const systemWorking: Result<string, string> = Ok("Seems to be!"); Copy
const systemWorking: Result<string, string> = Ok("Seems to be!");
Construct a Result with a success value of
A
.