24. implement LengthOfString<T>

  - accepted / - tried

Implement LengthOfString<T> to return the length of a string.


type A = LengthOfString<'BFE.dev'> // 7
type B = LengthOfString<''> // 0

Let's try to solve this problem within 5 minutes.

(18)