let toUpper = fun c -> System.Char.ToUpper(c) let allcaps = "sesquipedalian" |> String.map toUpper // val allcaps : string = "SESQUIPEDALIAN"