Skip to content

Instantly share code, notes, and snippets.

@KirtisChristensen
KirtisChristensen / RResult.fs
Last active February 25, 2023 00:54 — forked from mrange/RResult.fs
module RResult =
open System.Collections.Generic
open System.Text
[<RequireQualifiedAccess>]
type RBad =
| Message of string
| Exception of exn
| Object of obj
| DescribedObject of string*obj