Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
8
Task/Naming-conventions/Ada/naming-conventions-1.adb
Normal file
8
Task/Naming-conventions/Ada/naming-conventions-1.adb
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
function Max (Left, Right : Integer) return Integer is
|
||||
begin
|
||||
if Left < Right then
|
||||
return Right;
|
||||
else
|
||||
return Left;
|
||||
end if;
|
||||
end Max;
|
||||
3
Task/Naming-conventions/Ada/naming-conventions-2.adb
Normal file
3
Task/Naming-conventions/Ada/naming-conventions-2.adb
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
package My_Package is
|
||||
...
|
||||
end My_Package;
|
||||
3
Task/Naming-conventions/Ada/naming-conventions-3.adb
Normal file
3
Task/Naming-conventions/Ada/naming-conventions-3.adb
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
package body My_Package is
|
||||
...
|
||||
end My_Package;
|
||||
Loading…
Add table
Add a link
Reference in a new issue