38. implement Add<A, B>

  - accepted / - tried

Add<A, B>を実装してください。

type A = Add<1, 2> // 3
type B = Add<0, 0> // 0

10分間以内で解いてみて

(22)