53. Implement SnakeCase<S>

  - accepted / - tried

Implement SnakeCase<S> to turn string in camel case to snake case.

type A = SnakeCase<'BigFrontEnd'> // big_front_end

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

(8)