Skip to content

Commit 71371df

Browse files
committed
🌐 adjusting the Playground sample
1 parent d9a7b48 commit 71371df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Playground.playground/Contents.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let program =
2020
2121
function Factorial(number: Integer): Integer;
2222
begin
23-
if (number > 1) then
23+
if number > 1 then
2424
Factorial := number * Factorial(number-1)
2525
else
2626
Factorial := 1

0 commit comments

Comments
 (0)