Update factorial.jpl

This commit is contained in:
Mattia 2020-10-22 18:04:27 +02:00 committed by GitHub
parent 520477656e
commit c70d923ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ fun factorial(n) {
var start = clock();
print "Computing factorials from 0 to 200";
print("Computing factorials from 0 to 200");
for (var i = 0; i < 201; i = i + 1) factorial(i);
var result = clock() - start;
print "Computed factorials in " + stringify(result) + " seconds";
print("Computed factorials in " + stringify(result) + " seconds");