1 / 2
Compile and Run Ada Program
20 likes | 311 Vues
Compile and Run Ada Program. Save package specification as *.ads Save package body as *.adb Save your client procedure as client.adb Compile gnatmake client.adb Run ./client. ML Practices. Write the length function in ML How to handle nested list?
Télécharger la présentation
Compile and Run Ada Program
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
Compile and Run Ada Program • Save package specification as *.ads • Save package body as *.adb • Save your client procedure as client.adb • Compile • gnatmake client.adb • Run • ./client
ML Practices • Write the length function in ML • How to handle nested list? • Difficult because a list in ML must be homogeneous • Use datatype and mutually recursive functions
More Related