38. implement Add<A, B>
Share
- accepted / - tried
Implement Add<A, B>
to get the sum of two positive integers.
type A = Add<1, 2> // 3type B = Add<0, 0> // 0
- accepted / - tried
Implement Add<A, B>
to get the sum of two positive integers.
type A = Add<1, 2> // 3type B = Add<0, 0> // 0