pascalabcnet/Configuration
Mikhalkovich Stanislav 30668e650a function f(n: integer): integer;
begin
  if n = 0 then Result := 1
  else Result := n*f(n-1);
end;

begin
  var a := (var b := f(5)) + b;
  Print(a,b);
end.
2023-12-31 21:56:13 +03:00
..
GlobalAssemblyInfo.cs function f(n: integer): integer; 2023-12-31 21:56:13 +03:00
GlobalAssemblyInfo.cs.tmpl 2020 to 2021 2021-01-05 06:50:21 +05:00
pabcversion.txt.tmpl Checking for updates 2016-09-16 21:14:49 +02:00
Version.defs function f(n: integer): integer; 2023-12-31 21:56:13 +03:00