Posts

Showing posts with the label ada

CS4150 Assignemt 4 Ada Book

There are 4 files: 1) assign4.gpr 2) books.adb 3) books.ads 4) test_book.adb Source Code: ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// assign4.gpr ---------------------------------------------------------------------------------------------------------------------------------- project Assign4 is    for Source_Files use ("books.adb", "books.ads", "test_book.adb");    for Main use ("test_book.adb"); end Assign4; ---------------------------------------------------------------------------------------------------------------------------------