Change tabs to spaces.

This commit is contained in:
Stephen Chung
2021-05-24 12:12:16 +08:00
parent 98a232cb8c
commit aa8dee6460
4 changed files with 88 additions and 88 deletions

View File

@@ -6,7 +6,7 @@ const REPEAT = 5;
fn fib(n) {
if n < 2 {
n
n
} else {
fib(n-1) + fib(n-2)
}
@@ -19,7 +19,7 @@ let result;
let now = timestamp();
for n in range(0, REPEAT) {
result = fib(TARGET);
result = fib(TARGET);
}
print(`Finished. Run time = ${now.elapsed} seconds.`);