File: TruckPacker.pl

package info (click to toggle)
robodoc 4.99.40-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,560 kB
  • ctags: 978
  • sloc: ansic: 14,067; sh: 3,711; perl: 155; makefile: 108
file content (25 lines) | stat: -rw-r--r-- 435 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl -w

#****h* FactoryTools/TruckPacker
# FUNCTION
#   A program to effectively pack a truck with cargo.
#   It consists of two modules:
#     Cargo  -- classes to define the kind of cargo 
#               that can be packed.
#     Loader -- classes to define various packing
#               algorithms.
# 
#****

use Box;
use SquareBox;
use RectangularBox;
use Loader;

sub main {
    print "Hello world\n";
}

main();