1#
2# Copyright(C) 1998
3# All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4#
5# Permission from 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# date : January 1, 1998.
11# author : Salih Yurttas.
12#
13# comp_04.pl
14#
15
16
17require "f_aa.pl";
18require "f_bb.pl";
19
20# some computations...
21
22f_aa("--> a : ", 2);
23
24# some more computations...
25
26f_aa("--> a : ", 4);
27
28# some more computations...
29
30f_bb("--> b : ", 4);
31
32# some more computations...
33
34f_bb("--> b : ", 2);