We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a7b48 commit 71371dfCopy full SHA for 71371df
Playground.playground/Contents.swift
@@ -20,7 +20,7 @@ let program =
20
21
function Factorial(number: Integer): Integer;
22
begin
23
- if (number > 1) then
+ if number > 1 then
24
Factorial := number * Factorial(number-1)
25
else
26
Factorial := 1
0 commit comments