Skip to content

Instantly share code, notes, and snippets.

@freeonterminate
Last active October 5, 2017 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freeonterminate/5616b33f1ef07167b04f24d64ed511c1 to your computer and use it in GitHub Desktop.
Save freeonterminate/5616b33f1ef07167b04f24d64ed511c1 to your computer and use it in GitHub Desktop.
昔の書き方だよ。
program Foo;
function Bar(N: Integer): Integer;
begin
if (N > 0) then
Bar := Bar(N - 1);
end;
begin
Bar(5);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment