Yurttas/PL/IL/Ada-95/F/06/tasks/task 00.adb
Jump to navigation
Jump to search
1--
2-- Copyright(C) 1998
3-- All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4--
5-- Permission to use, copy, modify, and distribute this
6-- software and its documentation for EDUCATIONAL purposes
7-- and without fee is hereby granted provided that this
8-- copyright notice appears in all copies.
9--
10
11-- date : January 1, 1998.
12-- author : Salih Yurttas.
13
14-- task_00.adb
15
16
17procedure Task_00 is
18
19 task First;
20 task Second;
21
22 task body First is
23 begin
24 null;
25 end First;
26
27 task body Second is
28 begin
29 null;
30 end Second;
31
32begin
33
34 null;
35
36end Task_00;