using static LanguageExt.Prelude;
public static void Main()
Option<string> tata = toto;
Console.WriteLine(tata.Map(x => x.ToUpper()));
Try<string> seb = Try("Coucou");
Console.WriteLine(seb.Map(x => x.ToUpper()));
Console.WriteLine("Hello World");
failure => throw new Exception($"FAILURE: {failure}")
static Try<string> Send(string message)
static Try<string> GetList(string a)
throw new Exception("Coucou");