Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/Special-variables/Pascal/special-variables-1.pas
Normal file
4
Task/Special-variables/Pascal/special-variables-1.pas
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
program foo(input, output);
|
||||
begin
|
||||
{ In this program, `input` and `output` have special meaning. }
|
||||
end.
|
||||
6
Task/Special-variables/Pascal/special-variables-2.pas
Normal file
6
Task/Special-variables/Pascal/special-variables-2.pas
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
program foo(output);
|
||||
var
|
||||
input: integer;
|
||||
begin
|
||||
{ In this program only `output` has special meaning. }
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue