reformat file

This commit is contained in:
2024-05-13 23:14:06 +01:00
parent fd50076850
commit 0cb8b8b886

View File

@@ -29,3 +29,5 @@ type Fib<N extends Num> = N extends _0
: N extends _1
? N
: Add<Fib<Pred<N>>, Fib<Sub<N, _2>>>;
type Result = Add<_2, _2>;