37. implement SmallerThan<A, B>

  -通过 / -执行

请实现SmallerThan<A, B>

type A = SmallerThan<0, 1> // true
type B = SmallerThan<1, 0> // false
type C = SmallerThan<10, 9> // false

争取10分钟以内搞定这个问题

(18)