Quick actions

cmd+k|ctrl+k

Navigation

Languages

Practice

Snippet info

Language

Fsharp

Visibility

public

Author

tollask

Created

2017-04-07T13:23:14Z

Updated

2017-04-07T13:26:00Z

let delta (x: char) (y: char) =
        abs( (int)x - (int)y )
printfn "delta = %d"(delta 'a' 'z')
INFO