Hi, is there a function to increment a character in F# ?
I'm working with:
let workingSet = ['a' .. 'z'];;
let inc x = x++;;
let rslt = workingSet |> List.map inc ;;
Hi, is there a function to increment a character in F# ?
I'm working with:
let workingSet = ['a' .. 'z'];;
let inc x = x++;;
let rslt = workingSet |> List.map inc ;;
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.